@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700;900&display=swap');
html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.row{
    max-width: 1240px;
    margin: 0px auto;
}

header{
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.486), rgba(0, 0, 0, 0.863)), url("background.png");
    background-size: cover;
    position: relative;
}


header nav{
    background-color: white;
    min-height: 8vh;
    padding: 0.5em 0em;
}
header nav .row{
    display: flex;
    justify-content: space-between;
    align-items: left;
    
}
header nav .row a{
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
}

header .header-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10em;
}

header .header-content h1{
    font-size: 6em;
    color: white;
}
header .header-content h1 span{
    color: #F0D908;
    line-height: 1;
}
header .header-content h3{
    color: white;
    font-weight: 300;
    line-height: 1;
    font-size: 1.5em;
}

header .header-content a{
    color: black;
    text-decoration: none;
    padding: 1em 2em;
    background-color: #F0D908;
    border-radius: 6px 2px 6px 2px;
    margin-top: 3em;
}

header .wrapper .row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
header .wrapper{

    position: absolute;
    bottom: 0;
    width: 100%;
    gap: 2em;
    padding: 4em 0em;
    background: rgba(0, 0, 0, 0.445);
    backdrop-filter: blur(5px);
    
}

header .wrapper .item p{
    color: white;
    font-size: 20px;
    font-weight: 300;
}
header .wrapper .item { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    text-align: center;
    }
   

main .wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
    margin-top: 5em;
}

main .wrapper .item{
    display: flex;
    justify-content: center;
    text-align: center;
}
main .wrapper .item img{
    height: 200px;
}


main .wrapper .item a{
    text-decoration: none;
    color: black;
    
}
main .wrapper .item h4{
    font-weight: 300;
}
main .wrapper .item h2{
    font-size: 700;
}

footer .wrapper{
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 3em;
    padding: 1em 1em;
}