/* Navbar */

nav {
    display: flex;
    position: absolute;
    top: 0vh;
    left: 0vh;
    width: 100%;    
}

nav ul {
    color: #fe9e60;
    font-family: "Turret Road", sans-serif;
    font-size: 2rem;
    list-style: none;
}

nav ul li {
    display: inline;
}

nav ul li a:link {
    color: #fe9e60;
    text-decoration: none;
}

nav ul li a:visited {
    color: #fe9e60;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ff7e4b;
    text-decoration: underline;
}

nav ul li a:active {
    color: #ff7e4b;
    text-decoration: underline;
}


/* Contact Form Rewrite */

.section-one {
    width: 50%;
}

.honeypot-field {
    display: none; /* This item fools bots into filling out a field that only they can see */
} 

.contact-form {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 70%;
    
    position: absolute;

    color: #fe9e60;
    font-family: "Space Grotesk", sans-serif;
}

.form-elements {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-flow: column;
}

.contact-us,
textarea,
input,
#name,
#message,
#email,
#color {
    width: 33vw;
    background-color: #0000008a;
    border: 2px solid #fe9e60;
    border-radius: 0px;
    font-family: inherit;
    outline: none;
}

.contact-us p {
    text-align: center;
    color: #fe9e60;
    font-family: "Turret Road", sans-serif;
    font-size: 2rem;
}

.section-two {
    width: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.section-two p {
    width: 50%;

    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    text-align: justify;
}

.section-two-images {
    width: 100%;
    margin-top: 1rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-height: 40px;
}

.section-two-images img {
    position: relative;
    top: 50%;
}

.submit-send-button {
    background: none;
    font-family: inherit;
    font-size: 100%;
    padding: .5em 1em;
    color: #444;
    border: 0px solid #999;
    border: transparent;
    background-color: #ffffff00;
    text-decoration: none;
    border-radius: 2px;
}

.submit-send-button p {
    display: block;
    position: relative;
    margin: 0 auto;
    color: #fe9e60;
}

.thankyou_message {
    width: 33vw;
    text-align: center;

    font-family: "Space Grotesk", sans-serif;
    font-weight: 550;
    font-style: normal;

    font-size: 1.5rem
}

.thankyou_message b {
    color: #fe9e60
}

/* Three.js Canvases */

#sphere-canvas {
	width: 100vw;
	height: 100%;
}