:root{
    --main-color: orange;
    --error-color: rgb(97, 0, 0);
}

body{
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}

h1{
    text-align: center;
    margin: 50px 20px 100px;
    font-size: 35pt;
    text-transform: uppercase;
    font-family: 'Bungee', cursive;
    line-height: 1;
}

a{
    text-decoration: none;
    color: black;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

a:hover{
    color: var(--main-color);
}

.font-special{
    font-family: 'Bungee', cursive;
}

main.wrap{
    min-height: 75vh;
}

main.wrap > section{
    padding: 50px 0 20px;
}

.block{
    display: block !important;
}

.none{
    display: none !important;
}

.italic{
    font-style: italic;
}

.small{
    font-size: 10pt;
}

.center{
    text-align: center;
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

em{
    font-style: italic;
    color: var(--main-color);
}

strong{
    font-weight: bold;
    color: var(--main-color);
}

.upper{
    text-transform: uppercase;
}

.lower{
    text-transform: lowercase;
}

.no-pad{
    padding: 0;
}

.no-marg{
    margin: 0;
}

.margin-bottom{
    margin-bottom: 20px;
}

.pad{
    padding: 20px;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.justify-between{
    justify-content: space-between;
}

.justify-around{
    justify-content: space-around;
}

.flex-column{
    flex-direction: column;
}

.align-none{
    align-items: inherit;
}

.button{
    background-color: var(--main-color);
    border: none;
    padding: 15px 40px;
    color: white;
    font-size: 12pt;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.button.reverse{
    background-color: gray;
}

.button:before{
    content: "";
    background-color: black;
    opacity: .25;
    position: absolute;
    top: 0; right: 100%; left: 0; bottom: 0;
    z-index: -1;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.button:hover:before{
    right: 0;
}

.particle{
    position: absolute;
    top: -20px; left: 40%;
    color: lightgray;
    font-style: italic;
    font-weight: normal;
    font-size: 18pt;
}

.max-250{
    max-width: 250px;
    margin: auto;
}

.max-500{
    max-width: 500px;
    margin: auto;
}

input[type="text"]{
    border: none;
    border-bottom: solid 1px var(--main-color);
    background: transparent;
    padding: 10px 20px;
    color: black;
    font-size: 18pt;
    margin: 0 0 50px;
}

input[type="text"]::placeholder{
    font-style: italic;
    color: lightgray;
    font-weight: normal;
}

input[type="text"]:focus{
    outline-color: var(--main-color);
}

.error{
    color: var(--error-color) !important;
}

.btn-wrap{
    text-align: center;
}

footer{
    margin-top: 50px;
}

footer p{
    margin: 0;
}

.pointer{
    cursor: pointer;
}