* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #FEFAEE;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #95803D;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 300;
    font-size: 50px;
    padding: 0px 0;
    margin: 0;
}

.container {  
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.title {
    width: 100%;
    margin: 10px 0 0 0;
}

.songs {
    width: 100%;
    margin: 10px 50px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-lungs, .cover-ceremonials, .cover-howbig, .cover-highashope {
    width: 50%;
    min-height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 15px 25px;
}

.cover-lungs {
    background-image: url(../image/lungs.jpg);
}

.cover-ceremonials {
    background-image: url(../image/ceremonials.jpg);
}

.cover-howbig {
    background-image: url(../image/howbig.jpg);
}

.cover-highashope {
    background-image: url(../image/florence-high-as-hope.jpg);
}

.songs-left, .songs-right {
    width: 25%;
    color: #2E2B26;
    font-family: "Montserrat";
    font-size: 20px;
    font-weight: 250;
}

.songs-left {
    text-align: right;
}

.songs-right {
    text-align: left;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 30px 50px;
}

.buttons a {
    background-color: #95803D;
    border: none;
    padding: 10px 40px;
    margin: 0 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 350;
    color: #FEFAEE;
    font-size: 16px;
}

.buttons a:hover {
    opacity: 0.6;
    transition-duration: 0.6s;
}

footer {
    width: 100%;
    font-size: 16px;
    background-color: rgba(149, 128, 61, 0.582);
    padding: 15px 0;
    font-family: "Montserrat";
    font-weight: lighter;
    color: #FEFAEE;
    text-align: center;
}

footer p {
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .songs-left, .songs-right {
        font-size: 18px;
    }
}

@media screen and (max-width: 960px) {
    .songs-left, .songs-right {
        font-size: 17px;
    }
    .cover-lungs, .cover-ceremonials, .cover-howbig, .cover-highashope {
        min-height: 400px;
    }
}

@media screen and (max-width: 800px) {
    .songs-left, .songs-right {
        font-size: 16px;
    }
    .cover-lungs, .cover-ceremonials, .cover-howbig, .cover-highashope {
        min-height: 350px;
    }
    .buttons {
        margin: 0 0 30px 0;
    }
}

@media screen and (max-width: 720px) {
    h1 {
        font-size: 40px;
    }
    .songs-left, .songs-right {
        text-align: center;
        width: 80%;
    } 
    .songs {
        flex-direction: column;
    }
    .cover-lungs, .cover-ceremonials, .cover-howbig, .cover-highashope {
        width: 80%;
        min-height: 400px;
        margin: 5px;
    }
    .buttons {
        margin: 10px 0 30px 0;
    }
}

@media screen and (max-width: 320px) {
    h1 {
        font-size: 25px;
    }
    .buttons a {
        padding: 5px 20px;
        font-size: 14px;
    }
    .songs {
        margin: 10px 20px;
    }
    .cover-lungs, .cover-ceremonials, .cover-howbig, .cover-highashope {
        width: 90%;
        min-height: 250px;
    }
    .songs-left, .songs-right {
        font-size: 14px;
    }
    footer p {
        font-size: 14px;
    }
}