* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #3d4b71;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    font-size: 1.55vw;
}
/* Header style starts here */
header {
    padding: 20px 35px;
    background-color: #023047;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    width: 100%;
}

header h1 {
    font-weight: bold;
    font-size: 36px;
    color: #ffffff;
    margin: 0;
    display: flex;
}

header h3 {
    margin: 0;
}

header a {
    text-decoration: none;
    color: #fca148;
}

header nav {
    margin: 7px 0;
}

header nav ul  {
     display: flex;
     flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
      
}

header nav ul li a {
    padding: 5px 5px;
    font-weight: lighter;
    font-size: 1.55vw;
}

/* Footer style starts here */
footer {
    background: #eae2b7;
    width: 100%;
    padding: 40px 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

footer h2 {
    color: #2c374e;
    font-size: 30px;
    margin: 0;
}

footer div {
    float: right;
    line-height: 1.5;
    text-align: right;
}

footer a {
    color: #2c374e;
}

/* big elements starts here*/
.big {
    width: 900px;
    margin: 0 auto 30px auto;
    background: #fca148;
    color:#2c374e; 
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

.big img {
    width: 60%;
    
    flex: 1 12%;
}

.big img img {
    max-width: 100%;
}

.big-bio {
    padding: 35px;
    
    width: 65%;
}

.big-bio h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.big-bio p {
    font-size: 17px;
    line-height: 1.3;
}

.big-bio h4 {
    font-weight: lighter;
    font-size: 17px;
    margin-bottom: 25px;
}

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

/* favorite tracks starts here */
.fav {
    width: 900px;
    margin: 0 auto 30px auto;
    background: #fca148;
    color:#2c374e; 
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

.fav img {
    flex: 1 12%;
    margin-right: 20px;
    width: 60%;
}

.fav-tracks {
    padding: 35px;
    float: left;
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

.fav-tracks h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.fav-tracks p {
    font-size: 17px;
    line-height: 1.3;
}

.fav-tracks h4 {
    font-weight: lighter;
    font-size: 17px;
    margin-bottom: 25px;
}

.fav ul   {
    padding: 35px;
    float: right;
}

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

/* gallery elements starts here */
.gallery {
    width: 900px;
    margin: 0 auto 30px auto;
    background: #fca148;
    color:#2c374e; 
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}

.gallery img {
    width: 60%;
    flex: 1 12%;
}

.image-gallery {
    padding: 35px;
    width: 65%;
}

.image-gallery h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.image-gallery p {
    font-size: 17px;
    line-height: 1.3;
}

.image-gallery h4 {
    font-weight: lighter;
    font-size: 17px;
    margin-bottom: 25px;
}

.gallery ul   {
    padding: 35px;
    float: right;
}
.text-left {
    text-align: left;
}

.flex-row {
    display: flex;
  }

/* MEDIA QUERY FOR SMALLER DESKTOP SCREENS AND SMALLER */
@media screen and (max-width: 980px) {
    header {
        padding-bottom: 0;
        justify-content: center;
    }

    header h1 {
        width: 100%;
        text-align: center;
    }

    header nav ul {
        margin-top: 20%;
        width: 100%;
        justify-content: center;
    }

    header nav li a {
        font-size: 20%;
    }

    footer h2, footer div {
        text-align: center;
        width: 100%;
    }
}

/* MEDIA QUERY FOR TABLETS AND SMALLER */
@media screen and (max-width: 768px) {
    section {
        padding: 30px 15px;
    }

    .big h2 {
        flex: 1 100%;
        text-align: center;
    }

    .big-text {
        flex: 100%;
    }

    .gallery h2 {
        flex: 1 100%;
        text-align: center;
    }

    .gallery-text {
        flex: 100%;
    }

    .fav h2 {
        flex: 1 100%;
        text-align: center;
    }

    .fav-text {
        flex: 100%;
    }
}

/* MEDIA QUERY FOR MOBILE PHONES AND SMALLER */
@media screen and (max-width: 575px) {
    section {
        padding: 30px 15px;
    }

    .big h2 {
        flex: 1 100%;
        text-align: center;
    }

    .big-text {
        flex: 100%;
    }

    .gallery h2 {
        flex: 1 100%;
        text-align: center;
    }

    .gallery-text {
        flex: 100%;
    }

    .fav h2 {
        flex: 1 100%;
        text-align: center;
    }

    .fav-text {
        flex: 100%;
    }
}
  
