body{
    font-family: 'Roboto', sans-serif;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center left;
    font-size: 100%;
    background-repeat: no-repeat;
}

.container{
    margin: 0 auto;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    background-image: url('../img/white_logo_transparent_background.svg');
    background-size: contain;
    width: 263px;
    height:158px;
    background-repeat: no-repeat;
    margin: 0 auto;
}
.btn-group{
    display: grid;
    gap: 15px;
    grid-template-columns: 100%;
}
.black-btn{
    text-decoration: none;
    background-color: #000;
    color:#FFF;
    display: block;
    width:263px;
    text-align: center;
    padding: 15px;
    border:1px solid white; 
}
.black-btn:hover{
    background-color: #AEA79F;
}



@media (min-width: 600px) {
    .logo{
        width: 350px;
        height: 210px;
    }
    .btn-group{
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    body{
        background-position: center center;
    }
}