/* CSS Resets */

h1, h2, h3, h4, p, nav ul {
    padding: 0;
    margin: 0;
}
nav ul {
    list-style-type: none;
}
img { display: block; }
* { box-sizing: border-box;}
/*-----end reset------------*/

body{
    background-color: black;
    padding: 0 20px;
    font-family: "Advent Pro", Verdana, Geneva, Tahoma, sans-serif;
    color: white;
}

.container {
    max-width: 1000px;
    margin: auto;
    background-color: black;
}

h2{
    font-size: 5vw;
    padding: 10px;
    color: #DF82E5;
    letter-spacing: 1.2vw;
}

header{
    background-image: url("images/header.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 45vw;
    width: auto;
    margin-bottom: 30px;
}

#navbar{
    position: sticky;
    top: 0;
    background-color: #365968;
    margin-bottom: 50px;
    padding: 10px;
    z-index: 1;
    border-radius: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
}

nav ul li a {
    color:#DF82E5;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2vw;
}

.intro{
    display: flex;
    justify-content: space-evenly;
}

.intro p{
    font-size: 1.5em;
    color: white;
    width: 30vw;
}

.intro #lp{
    width: 20vw;
    height: auto;
}

.intro #icons img{
    width: 20vw;
    height: auto;
}

#vinyls{
    display: flex;
    justify-content: space-evenly;
    padding: 30px 0px;
}

#vinyls img{
    width: 40vw;
    height: auto;
}

#order{
    font-size: 2em;
    color: #365968;
    background-color: #DF82E5;
    border-radius: 10px;
    width: 15%;
    margin: auto;
    padding: 5px;
    font-size: 3vw;
}

#chester, #emily{
    display: flex;
    gap: 5%;
    justify-content: space-evenly;
    padding: 20px;
    font-size: 3vw;
}

#chester P{
    width: 50%;
}

#dates{
    display: flex;
    font-size: 3vw;
    width: 80%;
    margin: auto;
}

#dates ul li{
    list-style-type: none;
    padding-bottom: 20px;
    border-bottom: 2px solid #DF82E5;
}

#tickets{
    border-left: 2px solid #DF82E5;
}

#items{
    display: flex;
    font-size: 3vw;
    width: 80%;
    margin: auto;
}

#items ul li{
    list-style-type: none;
}

#items ul li img{
    width: 20vw;
}

