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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.pic {
    min-height: 800px;
    background-image: url(../image/florence-min.jpg);
    background-size: cover;
    background-position: center;
}

nav {
    width: 100%;
    position: fixed;
    background-color: rgba(254, 250, 238, 0.801);
    padding: 0 0 5px 0;
}

nav li {
    display: block;
    float: left;
    border-left: solid 1.5px #95803D;
    padding: 15px;
    margin-top: 5px;
}

nav li:first-child {
    border-left: none;
}

nav li:hover a {
    color: #2E2B26;
    transition-duration: 0.6s;
}

nav a {
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 350;
    font-size: 16px;
    text-decoration: none;
    color:rgb(150, 128, 55);
}

h1, h2 {
    text-align: center;
    color: #95803D;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 300;
}

h1 {
    font-size: 50px;
    padding: 50px 0;
    margin: 0;
}

h2 {
    font-size: 30px;
}
.disc {
    color: #FEFAEE;
}

p {
    font-family: "Cardo", serif;
    color: #2E2B26;
}

.strip1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
    margin-bottom: 150px;
}

.logo {
    width: 30%;
    height: 250px;
    background-image: url(../image/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.line {
    border-left: 3px solid #95803D;
    height: 350px;
}

.history {
    width: 50%;
    min-height: 300px;
    text-align: left;
    font-size: 24px;
    margin: 0 50px;
}

.strip2 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    min-height: 600px;
    background-image: url(../image/pic2.jpg);
    background-size: cover;
    background-position: center;
}

.strip2 h1 {
    padding-top: 100px;
}

.disc {
    width: 100%;
}

.album {
    width: 35%;
    padding: 0 40px 20px 40px;
    margin: 10px 50px 50px 50px;
    background-color: #FEFAEE;
    border:  2px solid #95803D; 
    outline: 8px solid #FEFAEE;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.album p {
    font-size: 20px;
}

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

.album a:hover, .ticket a:hover {
    opacity: 0.6;
    transition-duration: 0.6s;
}

.strip3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.concert {
    width: 30%;
    display: flex;
    border-bottom: #95803D solid 2px;
}

.date {
    width: 70%;
}

.date p {
    font-size: 20px;
    margin: 5px 0;
}

.ticket {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram a, .spotify a, .youtube a, .facebook a, .twitter a  { 
    display: block;
    height: 30px;
    width: 30px;  
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 10px 35px 10px;
}

.instagram:hover, .twitter:hover, .facebook:hover, .spotify:hover, .youtube:hover {
    opacity: 0.6;
    transition-duration: 0.6s;
    cursor: pointer;
}

.instagram a {  
    background-image: url(../image/instagram.png);
}

.spotify a {   
    background-image: url(../image/spotify.png);
}

.youtube a {  
    background-image: url(../image/youtube.png);
}

.facebook a { 
    background-image: url(../image/facebook.png);
}

.twitter a { 
    background-image: url(../image/twitter.png);
}

.credits {
    font-size: 16px;
    background-color: rgba(149, 128, 61, 0.582);
    padding: 20px 0;
    font-family: "Montserrat";
    font-weight: lighter;
    color: #FEFAEE;
    text-align: center;
}

@media screen and (max-width: 1360px) {
    .history {
        font-size: 22px;
    }
    .album {
        width: 40%;
    }
    .concert {
        width: 40%;
    }
    .strip1 {
        min-height: 300px;
        margin-bottom: 40px;
    }
    h1 {
        padding: 50px 0 30px 0;
    }
    .strip2 h1 {
        padding-top: 80px;
    }
}
@media screen and (max-width: 1280px) {
    .pic {
        min-height: 600px;
    }
    nav a {
        font-size: 14px;
    }
    nav li {
        padding: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .pic {
        min-height: 500px;
    }
    nav li {
        padding: 8px;
    }
    nav a {
        font-size: 12px;
    }
    .history {
        font-size: 18px;
    }
    .line {
        height: 300px;
    }
    .logo {
        height: 200px;
    }
    .strip1 {
        height: 350px;
        margin-bottom: 40px;
    }
    h2 {
        font-size: 20px;
    }
    h1 {
        font-size: 40px;
        padding: 40px 0 20px 0;
    }
    .strip2 h1 {
        padding-top: 60px;
    }
    .album {
        margin: 10px 20px 40px 20px;
        padding: 0 30px 10px 30px;
    }
    .album p {
        font-size: 18px;
        margin-top: 0;
    }
    .album a, .ticket a {
        padding: 5px 20px;
        font-size: 14px;
    }
    .date p {
        font-size: 18px;
    }
}

@media screen and (max-width: 960px) {
    .history {
        font-size: 16px;
    }
    .strip1 {
        height: 300px;
    }
    h1 {
        font-size: 30px;
    }
    .album p {
        font-size: 16px;
    }
    .credits {
        font-size: 14px;
    }
    .concert {
        width: 50%;
    }
    .date p {
        font-size: 16px;
    }
}

@media screen and (max-width: 800px) {
    h1 {
        padding-top: 60px;
    }
    .pic {
        min-height: 450px;
    }
    .history {
        width: 70%;
        margin: 0 25px; 
    }
    .logo {
        margin: 0 20px;
    }
    .album {
        padding: 0 20px 10px 20px;
        width: 45%;
        margin: 10px 15px 30px 15px;
    }
    .concert {
        width: 60%;
    }
}

@media screen and (max-width: 640px) {
    .pic {
        min-height: 400px;
    }
    .logo {
        height: 100px;
        margin: 0;
    }
    .strip1 {
        height: 300px;
    }
    .album {
        width: 60%;
    }
    
}

@media screen and (max-width: 320px) {
    .pic {
        min-height: 50px;
        background-image: none;
    }
    nav a {
        font-size: 10px;
    }
    h1 {
        font-size: 25px;
    }
    h2 {
        font-size: 18px;
        margin: 8px;
    }
    .strip1 {
        min-height: 400px;
        flex-direction: column;
        margin-bottom: 10px;
    }
    #H {
        padding-top: 15px;
    }
    .logo {
        width: 100%;
        height: 30px;
    }
    .line {
        height: 0;
    }
    .history {
        min-height: 300px;
        width: 100%;
        margin: 0;
        padding: 15px; 
    }
    .history p {
        font-size: 15px;
        text-indent: 10px;
        margin: 0 0 5px 0;
    }
    .album {
        width: 85%;
        padding: 0 20px 10px 20px;
    }
    .album p {
        font-size: 15px;
    }
    .concert {
        width: 90%;
    }
    .date p {
        font-size: 15px;
    }
    .credits {
        font-size: 12px;
    }
    .album a, .ticket a {
        padding: 5px 5px;
        font-size: 12px;
    }
    .date {
        width: 80%;
    }
    .ticket {
        width: 20%;
    }
}
