header{
    height: 40vh;
    width: 100%;
    background-image: url("./images/bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}
.title{
    /*font-family: 'EB Garamond', serif !important;*/
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 8vw;
    color: #51412a;
    font-style: italic;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%,-150%);
}
.buttons{
    display: flex;
    justify-content: space-between;
    width: 40%;
    margin: auto;
    margin-top: 100px;
}
.buttons button{
    padding-left:50px;
    padding-right:50px;
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic;
    font-size: 30px;
    background-color: #50412a;
    color: #edc67c;
    border: none;
    outline: none;
    border-radius: 10px;
}
.sub-header{
    width: 50%;
    margin: auto;
    margin-top: 100px;
}
.link{
    color: #51412a;
    text-decoration: none;
}
.sound-body{
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}
.sound{
    margin: auto;
}

@media only screen and (max-width: 996px) {
    header{
        height: 20vh;
    }
    .title{
        top: 100%;
        transform: translate(-50%,-100%);
       
    }
    .buttons{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .buttons button{
        width:250px;
        font-size: 20px;
        margin: auto;
         margin-bottom: 20px !important;
    }
    .buttons a{
        text-align:center;
    }
}
