*,
*::before,
*::after {
    font-family: "signo", sans-serif;
    font-weight: 700;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    cursor: url("../media/ccursor/Arrow.cur"), auto;
    min-height: 100vh;
    background-color: #30475E;
}

.pfp-option {
    width: 78px;
    height: 78px;
}

form {
    width: 80%;
    background-color: #cacaca;
    box-shadow: #30475E 0 0 10px 0;
    margin: auto;
    /* position: absolute;
    right: 17.5vh;
    top: 22vh;
    z-index: 5; */
}

.form-item {
    max-width: 80%;
    margin: 2em auto;
    box-sizing: border-box;
}

.button-submit {
    color: #222;
    /*
     position: absolute;
     */
    outline: #000000 1px solid;
    width: 180px;
    height: 90px;
    top: 69.4vh;
    right: 95vh;
    background-color: #F05454;
    display: block;
    margin: 0 auto;
}

.button-submit:hover {
    background-color: #b83f3f;
    color: #222;
    outline: #000000 2.5px solid;
    width: 180px;
    height: 90px;
    top: 66vh;
    right: 82vh;
    z-index: 24;
}

.selectdiv {
    /* position: absolute;
    top: 52vh;
    right: 24.5vh;


    float: left;
     */

    min-width: 200px;
}


select::-ms-expand {
    display: none;
}

.selectdiv:after {
    content: '<>';
    font: 17px "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 11px;
    /*Adjust for position however you want*/

    top: 18px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    /*left line */

    position: absolute;
    pointer-events: none;
}

.selectdiv select {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add some styling */

    display: block;
    width: 100%;
    height: 50px;
    /*
    float: right;
    margin: 5px 0px;
    */
    padding: 0 12px;
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    -ms-word-break: normal;
    word-break: normal;
}

input {
    opacity: 0;
    position: absolute;
    left: -99999px;
}

input:checked + label {
    order: 1;
    z-index: 2;
    background: #aaaaaa;
    border-top: none;
    position: relative;
}

input:checked + label:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    position: absolute;
    right: 10px;
    top: calc(50% - 2.5px);
    pointer-events: none;
    z-index: 3;
}

input:checked + label:before {
    position: absolute;
    right: 0;
    height: 40px;
    width: 40px;
    content: '';
    background: #666;
}

.pfp {
    width: 100px;
    height: 100px;
    background-color: #cacaca;
    box-shadow: #30475E 0 0 10px 0;
    margin: 1em auto;
}

.btn-pfp {
    width: 100%;
    height: 100%;
}

.btn-pfp:hover {
    background-color: #c5c5c5;
    color: #cacaca;
    outline: black solid 0.5px;

}

.img-pfp {
    height: 88%;
    width: 100%;
}


.CWindow {
    height: 550px;
    width: 500px;
    background-color: #DDDDDD;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}


label {
    display: block;
    margin-bottom: 5px;
}

textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 12px;
}

#burger-menu {
    cursor: pointer;
    height: 27px;
    width: 27px;
    margin: 50px;
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    color: blue;


}

#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
    background: #fff;
    display: block;
    height: 4px;
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
    z-index: 40;
}

#burger-menu span:before,
#burger-menu span:after {
    content: "";
    z-index: 40;


}

#burger-menu span {
    right: 0;
    top: 13px;
    width: 27px;
    z-index: 40;


}

#burger-menu span:before {
    left: 0;
    top: -10px;
    width: 16px;
    z-index: 40;


}

#burger-menu span:after {
    left: 0;
    top: 10px;
    width: 20px;
    z-index: 40;


}

#burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
    z-index: 40;
}

#burger-menu.close span:before {
    top: 0;
    transform: rotate(90deg);
    width: 27px;
    z-index: 40;
}

#burger-menu.close span:after {
    top: 0;
    left: 0;
    transform: rotate(90deg);
    opacity: 0;
    width: 0;
    z-index: 40;
}

#menu {
    backdrop-filter: blur(10px);
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    padding-top: 20px;
    transition: all 0.3s ease-in-out;

}

#menu.overlay {
    visibility: visible;
    opacity: 1;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8;
}

#menu li {
    list-style: none;
    z-index: 40;
}

#menu a {
    color: #fff;
    display: block;
    font-size: 32px;
    margin-bottom: 30px;
    text-decoration: none;
    z-index: 40;
}

.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 1px;
    grid-row-gap: 1px;
}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
}

.div4 {
    grid-area: 1 / 4 / 2 / 5;
}

.div5 {
    grid-area: 2 / 1 / 3 / 2;
}

.div6 {
    grid-area: 2 / 2 / 3 / 3;
}

.div7 {
    grid-area: 2 / 3 / 3 / 4;
}

.div8 {
    grid-area: 2 / 4 / 3 / 5;
}

.div9 {
    grid-area: 3 / 1 / 4 / 2;
}

.div10 {
    grid-area: 3 / 2 / 4 / 3;
}

.div11 {
    grid-area: 3 / 3 / 4 / 4;
}

.div12 {
    grid-area: 3 / 4 / 4 / 5;
}

.div13 {
    grid-area: 4 / 1 / 5 / 2;
}

.div14 {
    grid-area: 4 / 2 / 5 / 3;
}

.div15 {
    grid-area: 4 / 3 / 5 / 4;
}

.div16 {
    grid-area: 4 / 4 / 5 / 5;
}

.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    width: 500px;
    height: 500px;
    background-color: #cacaca;
    box-shadow: #30475E 0 0 1em 0;
    position: absolute;
    z-index: 100;
    overflow: hidden;
    cursor: pointer;
    margin: auto;
}


.hidden {
    display: none;
}

.selected-pfp {
    cursor: pointer;
    height: 80%;
    width: 80%;
}


.parent div {
    background-color: #c5c5c5;
    transition: all 300ms ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
    color: #cacaca;
    cursor: pointer;
}

.parent div:hover {
    transform: scale(1.2);
    background-color: #d8d8d8;
    color: #30475E;
}

.parent details[open] div {
    animation-name: menuAnim;
}

.parent details[open] .div1 {
    animation-delay: 0ms;
}

.parent details[open] .div2 {
    animation-delay: 50ms;
}

.parent details[open] .div3 {
    animation-delay: 100ms;
}

.parent details[open] .div4 {
    animation-delay: 150ms;
}

.parent details[open] .div5 {
    animation-delay: 200ms;
}

.parent details[open] .div6 {
    animation-delay: 250ms;
}

.parent details[open] .div7 {
    animation-delay: 300ms;
}

.parent details[open] .div8 {
    animation-delay: 350ms;
}

.parent details[open] .div9 {
    animation-delay: 400ms;
}

.parent details[open] .div10 {
    animation-delay: 450ms;
}

.parent details[open] .div11 {
    animation-delay: 500ms;
}

.parent details[open] .div12 {
    animation-delay: 550ms;
}

.parent details[open] .div13 {
    animation-delay: 600ms;
}

.parent details[open] .div14 {
    animation-delay: 650ms;
}

.parent details[open] .div15 {
    animation-delay: 700ms;
}

.parent details[open] .div16 {
    animation-delay: 750ms;
}

@keyframes menuAnim {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    width: 100px;
    height: 100px;
}

.grid-item {
    background-color: blue;
    transition: background-color 0.5s ease;
}

.grid-container.active {
    width: 200px;
    height: 200px;
}

.grid-container.active .grid-item:hover {
    background-color: red;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f7f9fb;
    display: none;
    justify-content: center;
    align-items: center;
}

.typing-effect {
    font-size: 24px;
    color: #000000;
}

.headphones-icon {

    width: 52px;
    height: 100px;

}


.typing-effect {
    text-align: center;
}


:root {
    --ti-cursor-color: rgb(0, 0, 0);
    --ti-cursor-font-size: 1.4em;
}

.loader-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 50vw;
    height: 14vh;
    font-size: 1.4em;
}
