*,
*:before,
*:after{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    background: #E0B97E url(../img/background.webp) no-repeat center bottom;
    background-size: cover;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header-bg{
    width: 100%;
    height: auto;
}
.wrapper{
    padding:50px 0;
    min-height: calc(100vh - 300px);
}
.container{
    padding:0 15px;
    width: 90%;
    max-width: 100%;
    margin:0 auto;
}
.link-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:20px;
}
.link-row .col{
    width: calc(25% - 40px);
    min-width: 250px;
    flex-grow:1
}
.link-row .link{
    background: #fff5;
    backdrop-filter: blur(20px);
    border-radius:20px;
    flex-grow: 1;
    display:flex;
    align-items:center;
    text-decoration:none;
    gap:15px;
    padding:30px;
    color:#555;
    height: 100%;
    border-bottom:10px solid #0001;
    transition: .3s ease;
}
.link-row .link:hover{
    background-color: #fff;
    transform: translateY(-10px);
}
.link-row .link .icon img{
    width: 64px;
}
.link-row .link .info .title{
    font-weight: bold;
    color:#222;
    font-size: 1.2rem;
}
.link-row .link .info .desc{
    margin-top:5px;
    color:#222;
    font-size: .8rem;
}
footer{
    text-align: center;
    font-weight: bold;;
}
@media (max-width:768px){
    .header{
        height:150px;
        overflow: hidden;
        position: relative;
    }
    .header img{
        height: 100%;
        width: auto;
        position: absolute;
        top:0;
        left:50%;
        transform: translateX(-50%);
    }
    .wrapper{
        min-height: 0;
    }
    .link-row{
        display: block;
    }
    .link-row .col{
        height: auto;
        width: auto;
        margin:0 0 20px;
    }
    .link-row .link{
        height: auto;
    }
}