body {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-color: #302e2e;
    -webkit-transition: background-image 0.5s ease-in-out;
    transition: background-image 0.5s ease-in-out;
    margin: 0;
    padding: 0;
}

a,
p,
ul,
li,
h1,
h2,
h3,
h4 {
    font-family: sans-serif;
    color: white;
}

#header_div {
    margin-bottom: 13em;
}

#contact {
    margin-left: 1em;
    margin-top: 1em;
}

#github_img {
    height: 3em;
    width: 3em;
}

#user_name {
    float: right;
    margin-right: 2em;
    margin-top: -1em;
}

#title {
    text-align: center;
    color: white;
    font-size: 7em;
    margin-bottom: 1.5em;
}

#summary {
    text-align: center;
    color: white;
    font-size: 3em;
    margin-bottom: 2em;
}

#app_purpose {
    text-align: center;
    margin-bottom: 2em;
}

#image_location {
    float: right;
    margin-right: 5em;
    margin-top: 4em;
}

#add_site_button {
    margin-left: 3.25em;
    margin-bottom: 2em;
    margin-right: 0.5em;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

#explore_button {
    margin-right: 0.5em;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

#login_button {
    margin-bottom: 2em;
    margin-right: 0.5em;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

#logout_button {
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

#user_name_input {
    padding-top: 0.25em;
    padding-bottom: 0.3em;
    font-size: 18pt;
    margin-left: 3.25em;
    margin-right: 0.5em;
    margin-bottom: 2em;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

#login_submit_button {
    margin-bottom: 2em;
    margin-left: 3px;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

#add_site_div {
    background-color: transparent;
    padding-left: 5em;
    padding-right: 5em;
    padding-top: 2em;
    padding-bottom: 2em;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

input {
    padding: 10px;
    font-size: 20pt;
    color: white;
    border: 2px solid white;
    background-color: transparent;
    margin-bottom: 1em;
}

textarea {
    padding: 10px;
    font-size: 12pt;
    width: 100%;
    height: 25em;
    border: 2px solid white;
    color: white;
    background-color: transparent;
    margin-bottom: 1em;
}

/* #escape_button{
    float: right;
} */

::placeholder {
    color: white;
}

#divider {
    background-color: white;
    padding: 1px;
}

#divider_top {
    background-color: white;
    padding: 1px;
}

.button {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    padding-right: 0.5em;
    padding-left: 0.5em;
    font-size: 18pt;
    cursor: pointer;
}

#site_comments {
    margin-top: 1em;
}

#comment_input {
    padding-top: 0.25em;
    padding-bottom: 0.3em;
    margin-right: 0.5em;
    font-size: 18pt;
    width: 30em;
}

#comment_submit_button {
    margin-left: 3px;
}

#delete_button {
    float: right;
}

#sites_div {
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

.site_card_div {
    padding-left: 5em;
    padding-right: 5em;
    padding-top: 2em;
    padding-bottom: 2em;
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* pre-loader */
.sk-wandering-cubes {
    margin: 0;
    width: 10em;
    height: 10em;
    position: relative;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.sk-wandering-cubes .sk-cube {
    background-color: white;
    width: 3em;
    height: 3em;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
    animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}

.sk-wandering-cubes .sk-cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: translateX(8em) rotate(-90deg) scale(0.5);
        transform: translateX(8em) rotate(-90deg) scale(0.5);
    }
    50% {
        /* Hack to make FF rotate in the right direction */
        -webkit-transform: translateX(8em) translateY(8em) rotate(-179deg);
        transform: translateX(8em) translateY(8em) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(8em) translateY(8em) rotate(-180deg);
        transform: translateX(8em) translateY(8em) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(8em) rotate(-270deg)
            scale(0.5);
        transform: translateX(0) translateY(8em) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: translateX(8em) rotate(-90deg) scale(0.5);
        transform: translateX(8em) rotate(-90deg) scale(0.5);
    }
    50% {
        /* Hack to make FF rotate in the right direction */
        -webkit-transform: translateX(8em) translateY(8em) rotate(-179deg);
        transform: translateX(8em) translateY(8em) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(8em) translateY(8em) rotate(-180deg);
        transform: translateX(8em) translateY(8em) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(8em) rotate(-270deg)
            scale(0.5);
        transform: translateX(0) translateY(8em) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

