* {
    box-sizing: border-box;
    /* transition: all ease-in-out 0.5s; */
}

html {
    width: 100vw;
    height: unset;
    overflow-x: hidden;
    font-size: 9px;
    scroll-behavior: smooth;
    /* Custom cubic-bezier easing */
    scroll-behavior: cubic-bezier(0.42, 0, 0.58, 1);
    scrollbar-color: red black;
    font-family: 'Tilt Neon', sans-serif;
}

body {
    overflow-x: hidden;
    height: 100%;
}

header {
    padding-top: 5px;
    color: aliceblue;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    z-index: 2;
    position: fixed;
    width: 100%;
    justify-content: center;
    background-color: #000000e5;
    border-bottom: 1px solid red;
}

nav {
    font-size: 1.8rem;
    text-wrap: nowrap;
    margin-top: 13px;
    margin-left: 6%;
}


#spaceImage {
    position: fixed;
    z-index: -1;
    /* height: 1024px;  TESTING FOR ANIMATION */
    top: 0;
    /* left: -30px; */
    object-fit: cover;
    height: 100vh;
    /* animation: stairsAnimation 4s; */
    /* transition: left ease-in-out 1s; */
}

#focus {
    color: #0088cc;
}

#mobile-menu-header {
    color: bisque;
}

.sidebar-menu > ul {
    padding-left: 0;
}
.sidebar-menu > ul > li:hover  {
    font-weight: bold;
}    
.sidebar-menu > ul > li > a {
    text-decoration: underline;
    color: azure;

}

.smallMenu-list-item {
    list-style: none;
    padding: 5px 1px;
}

.smallMenu-list-item:hover {
    background-color: rgba(255, 0, 0, 0.115);
}


/* HAMBURGER ICON STYLING */
#hamburger-menu {
    width: 20px;
    height: 20px;
    display: block;
    background: linear-gradient(to bottom, red, #280E6199 20%, transparent 20%, transparent 40%, red 40%, #280E6199 60%, transparent 60%, transparent 80%, red 80%, #280E6199 100%);
    cursor: pointer;
    border: none;
}

/* SLIDE IN TRANSITION EFFECT */
.sidebar-menu {
    position: absolute;
    top: 57px;
    left: -770px; /* Start off-screen */
    width: 100%;
    transition: 0.3s; /* Slide-in duration */
    background-color: #000000;
    margin-left: 0;
    border-bottom: solid 1px darkred;
}

.show {
    position: absolute;
    left: 0;
}

/* header importing from templateDesign */
#name_text {
    font-size: 15px;
    background-color: transparent;
}

.top-nav-a {
    text-decoration: none;
    color: aliceblue;
    padding: 10px;
    font-family: 'Tilt Neon', sans-serif;
}

nav a.top-nav-a:hover {
    color: #0088cc;
}

.title_text {
    font-size: 18px;
}

/* --------------------------------------------------------------------------------------------- */

.contact-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 84px;
    padding: 15px;
}

.contact-page-wrapper > h1 {
    text-align: center;
    color: ghostwhite;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* form paragraph styling*/ 

.form-info {
    font-size: 17px;
    text-align: center;
    background: #000000b8;
    padding: 8px;
    border-radius: 3px;
    color: ghostwhite;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

textarea {
    resize: none;
}

input[type="text"],
input[type="email"],
textarea {
    width: 80%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid red;
    font-size: 1.6rem;
}

textarea {
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-bottom: 2px solid cornflowerblue;
}

button[type="submit"] {
    width: 50%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.5rem;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

@media screen and (min-width: 500px) {
    html {
        font-size: 13px;
    }
}


@media screen and (max-width: 768px) {
    header {
        justify-content: space-around;
    }
    #larger-device-menu {
        display: none;
    }
    html {
        width: 100svw;
    }
}

@media screen and (min-width: 769px) {
    #hamburger-menu {
        display: none;
    }
}    