@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&display=swap');

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

html{
    background: black;
}


body {
    background: linear-gradient(rgba(0,0,0), rgba(0,0,0,.9), rgba(0,0,0,0),rgba(0,0,0)), url('honeycomb_pattern2.jpg') no-repeat center fixed;
    background-size:cover;
    
}


p {
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Lato';
    text-align: center;
    margin-top: 10px;
    
}

form
{
    text-align: center;

}

input
{
    height: 44px;
    width: 300px;
    padding: 10px;

}

textarea{
    min-height: 300px;
    min-width: 300px;

}

.formEntry
{
    padding:5px;
    background:rgba(0,0,0,0);
    border: 1px solid orange;
    color: white;
    font-size: 20px;
    font-family: 'Lato';
    border-radius: 10px;
    font-weight: 600;
}


#formSubmit
{
    height: auto;
    margin-top: 30px;
    padding: 20px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight:900;
    font-size: 32px;
    color: black;
    font-family: 'Lato';
    letter-spacing: 4px;
    opacity: .7;
    background: linear-gradient(45deg,darkorange, gold);
    transition: 0.5s;
    border:0px;
}

#formSubmit:hover {
    background: #03e9f4;
    opacity: 100%;
    color: white;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4
}


section {
    height: 100vh;
    width: 100vw;
}



section .header  {
    padding-top: 10px;
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-content: space-between;
    


}

section .header a {
    padding: 10px;
    margin: auto;
}

section .header a img {
    width: 350px;
    height: auto;
}


section .mid-section {
    
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-content: space-between;
    justify-content: center;

}

section .mid-section .column {

    min-width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section .mid-section .column h1 {
    color: white;
    font-size: 44px;
    font-weight: 300;
    font-family: 'Lato';
    text-align: center;
    
}

section .mid-section .column a {
    margin-top: 10px;
    padding: 20px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight:900;
    font-size: 32px;
    color: black;
    font-family: 'Lato';
    letter-spacing: 4px;
    opacity: .7;
    background: linear-gradient(45deg,darkorange, gold);
    transition: 0.5s;
}

section .mid-section .column a:hover {
    background: #03e9f4;
    opacity: 100%;
    color: white;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4
}


section .footer {
    padding: 20px;
    text-align: center;
}



section .footer img {
    
    height: 30px;
    width: auto;
    object-fit: contain;
}

#qrcode {
    height: 800px;
    width: auto;
    object-fit: contain;
}

@media(max-width: 767px) {
    section .mid-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    section .mid-section .column {
        font-size: 24px;
        padding-top: 50px;


    }

    section .mid-section .column h1 {
        font-size: 24px;

    }
}


.logo
{
    height: 50px;
}

#call_to_action
{
    background: radial-gradient(rgba(0,0,0,.9), rgba(0,0,0,.8), rgba(0,0,0,.7),rgba(0,0,0,0), rgba(0,0,0,0), rgba(0,0,0,0));
}

#email_action
{
    background: radial-gradient(rgba(0,0,0,.9), rgba(0,0,0,.8), rgba(0,0,0,.7),rgba(0,0,0,0), rgba(0,0,0,0), rgba(0,0,0,0));
}

#form_action
{
    background: radial-gradient(rgba(0,0,0,.9), rgba(0,0,0,.8), rgba(0,0,0,.7),rgba(0,0,0,0), rgba(0,0,0,0), rgba(0,0,0,0));
}