:root{
    --red:rgb(255, 0, 0);
    --red-accent: rgb(142, 0, 0);
    --creme:rgb(231, 223, 197);
    --creme-accent:rgb(140, 136, 121);
    --unchained_gray:rgb(67, 66, 66);
}

@font-face {
    font-family: Cruel;
    src: url(fonts/Cruel.otf);
}

@font-face{
    font-family: Propaganda;
    src: url(fonts/Propaganda.ttf);
}

@font-face {
    font-family: Versa;
    src: url(fonts/Versa.otf);
}

@font-face {
    font-family: Typewriter;
    src: url(fonts/JMH_Typewriter.ttf);
}

@font-face {
    font-family: Typewriter_bold;
    src: url(fonts/JMH_Typewriter_Bold.ttf);
}

body, html{
    
    padding: 0;
    margin: 0;
    width: 100%;
    align-items: center;
    text-align: center;
}

body{
    background-color: var(--creme);
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1{
    margin: 0;
    font-size: 60px;
    text-align: center;
    font-family: Typewriter_bold;
}

h2{
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    font-family: Typewriter_bold;
    color: var(--unchained_gray);
}

p{
    text-align: center;
    font-size: 32px;
    font-family: Typewriter;
    color: var(--unchained_gray);
}

a{
    color: black;
    text-decoration: none;
}

a:hover{
    color: white;
}

li{
    font-family: Typewriter;
    font-size: 32px;
}

label{
    font-size: 32px;
    font-family: Typewriter;
    color: var(--unchained_gray);
}

.header{
    width: 100%;
    background-color: var(--red);
}

.header h1{
    margin: 0;
    font-family: Versa;
    font-weight: normal;
    font-size: 120px;
    color: var(--creme);
    text-shadow: var(--creme-accent) 7px 7px 7px;
    display: inline;
}

.header .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header img{
    margin-top: 15px;
    margin-left: 10px;
    margin-right: 10px;
}

.header nav{
    font-size: 42px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header a{
    padding: 10px 20px 0 20px;
    font-family: Propaganda;
    font-size: 50px;
    color: var(--creme);
}

.header a:hover{
    background-color: lightgrey;
}

.selected_page{
    background-color: var(--red-accent);
}

.main{
    margin: 80px 0 100px 0;
    height: 100%;
}

.footer{
    width: 100%;
    margin-top: auto;
    background-color: var(--red);
    display: flex;
    justify-content: space-between;
}

.footer p{
    font-size: 25px;
    margin-top: 35px;
    margin-bottom: 35px;
    text-align: center;
}

.footer img{
    margin: 10px;
    height: 100px;
    width: 100px;
}

.text_width{
    width: 800px;
}

.homepage_media_horizontal{
    width: 800px;
}

.homepage_media_vertical{
    width: 400px;
}

.underlined{
    text-decoration: underline;
}

button{
    font-size: 40px;
    font-family: typewriter;
    border: 2px solid gray;
    background-color: white;
    cursor: pointer;
    transition: 150ms ease;
    color: black;
    font-weight: normal;
}

button:hover{
    border-color: rgb(76, 76, 76);
    background-color: lightgray;
}

button:focus{
    outline: none;
    border-color: rgb(76, 76, 76);
    background-color: lightgray;
}

.submit_tickets{
    border: solid;
    border-width: 2px; 
    color: black;
    font-family: Typewriter;
    text-decoration: none;
    font-size: 50px;
}

.submit_tickets:hover{
    background-color: grey;
    color: black;
}

.jva_img{
    width: 300px;
}

.lineup{
    width: 800px;
}

.artist{
    justify-content: center;
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}

.artist span{
    width: 400px;
}

.artist p{
    margin-left: 20px;
    margin-top: 0px;
    font-size: 22px;
}

.artist img{
    margin-right: 20px;
    width: 400px;
}

.ticket_scan{
    font-size: 10px;
    height: 50px;
    width: 280px;
}

.qr-code{
    width: 400px;
    height: 400px;
}