@font-face {
    font-family: zona;
    src: url('ZonaPro-Bold.woff');
}
body *{
    font-family: zona;
}
body{
    background: url(bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    font-size: 60px;
    color: #004CFA;
    margin: 5rem 0;
    position: relative;
    text-align: center;
}
h1::before{
    content: '';
    border-bottom:solid 8px #FFDB4E;
    width: 72px;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
a {
    text-align: center;
    margin-right: 30px;
    display: inline-block;
}
span{
    color: #FFDB4E;
}
img{
    max-width: 100%;
    height: auto;
}
.logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
@media (max-width:767px){
    body{
        background: none;
    }
    h1{
        font-size: 30px;
    }
    img {
        max-width: 80%;
        height: auto;
        text-align: center;
    }
    .logos {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    a{
        margin-bottom: 10px;
    }
}