:root {
    --primary-accent-colour: #FF4B33;
}

body {
    background-color: #222222;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.25rem;
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    width: 100%;
    text-shadow: 0 7.5px 15px rgba(0, 0, 0, 0.4);
    padding-bottom: 1rem;
    margin: 0px;
}

h2 {
    font-size: 1.5rem;
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    width: 100%;
    text-shadow: 0 7.5px 15px rgba(0, 0, 0, 0.4);
    padding-top: 1rem;
    margin: 0px;
    color: var(--primary-accent-colour);
}

p {
    font-size: 1rem;
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    text-shadow: 0 7.5px 15px rgba(0, 0, 0, 0.4);
    padding-top: 0.25rem;
    margin: 0px;
}

a {
    font-size: 1.5rem;
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    text-shadow: 0 7.5px 15px rgba(0, 0, 0, 0.4);
    margin-top: 1rem;
    color: white;
    text-decoration: none;
}

img {
    max-width: 300px;
    margin: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input {
    padding: 10px 15px;
    font-size: 1.15rem;
    text-align: center;
    border-radius: 7.5px;
    border-color: transparent;
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
}

#submitButton {
    padding: 10px 20px;
    margin-top: 1rem;
    font-size: 1.15rem;
    background-color: var(--primary-accent-colour);
    border-radius: 7.5px;
    color: white;
    border-color: transparent;
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
}

label[for=tnc] {
    font-size: 1rem;
    font-family: 'Bangers';
    font-weight: 400;
    font-style: normal;
    padding-left: 0.5rem; 
}

label a {
    font-size: 1rem !important;
    text-decoration: underline !important;
}

input[type=checkbox] {
    transform: scale(1.25);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    color: white;
    min-height: 100vh;
}

.content {
    text-align: center;
    padding-left: 3%;
    padding-right: 3%;
}

.cb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 1rem;
}

.form {
    margin-top: 2rem;
}

@media screen and (min-width: 760px) {

    
    
    .content {
        padding-left: 15%;
        padding-right: 15%;
    }

}

@media screen and (min-width: 550px) {

    img {
        max-width: 500px
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.15rem;
    }

}

