h1 {
    font-size: 12vw;
    font-family: "Sour Gummy", sans-serif;
    font-weight: 400;
    line-height: 12vw;
    color: #1bad22ff;
}
h2 {
    font-family: "Sour Gummy", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    color: #1bad22ff;
}
p {
    font-family: "Sour Gummy", sans-serif;
    color: #b3ccb5ff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 200;
    margin: 0;
}
.section-right p {
    margin: 20px 5%;
}
.highlight-text {
    color: white;
    margin: 0;
    font-size: 22px !important;
    line-height: 23px !important;
    font-style: italic;
    font-weight: 400;
}
.site-logo {
    animation-name: spinInRightNoMenu;
}
.app-recording {
    width: 60vw;
}
.site-section-wired {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 50px 5% 50px 5%;
    text-align: center;
}
.reverse {
    flex-direction: column-reverse;
}
#arrow-container-game:hover .arrow, #arrow-container-third:hover .arrow, #arrow-container-fourth:hover .arrow {
    border: 3px solid goldenrod;
    border-width: 0 7px 7px 0;
}
#arrow-container-top:hover .arrow {
    border: 3px solid goldenrod;
    border-width: 7px 0 0 7px;
}
#fourth-scroll-section {
    flex-direction: column;
    gap: 20px
}
.wired-link {
    text-decoration: underline;
    color: white;
}
.wired-link:hover {
    color: goldenrod;
}
.button {
    font-family: "Sour Gummy", sans-serif;
    font-weight: bold;
    font-size: 20px;
    width: 200px;
}
.main-greeting {
    margin-top: 20px;
}
#reset-password-section {
    display: flex;
    flex-direction: column;
    margin: 50px 5% 50px 5%;
    align-items: center;
}
#reset-password-container {
    margin-top: 40px;
}
#reset-password-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: relative;
    margin-top: 20px;
}
#reset-password-input {
    padding: 10px;
    width: 300px;
    font-size: 16px;
    border-radius: 10px;
    font-family: "Sour Gummy", sans-serif;
    background-color: #b3ccb5ff;
}
.input-icon  {
    position: absolute;
    right: 15px;
    top: 10px;
    color: grey;
    cursor: pointer;
}
.wired-button {
    font-family: "Sour Gummy", sans-serif;
    font-weight: bold;
    font-size: 20px;
    width: 200px;
    padding: 10px;
    border-radius: 10px;
    background-color: #1bad22ff;
    color: white;
    cursor: pointer;
}
.wired-button:disabled {
    background-color: grey;
    cursor: not-allowed;
}
.wired-button:disabled:hover {
    background-color: grey;
}
.wired-button:hover {
    background-color: goldenrod;
}
#success-message {
    visibility: hidden;
    max-width: 600px;
    text-align: center;
    margin-top: 40px;
}
#password-instructions {
    text-align: center;
}

@media only screen and (min-width: 768px) and (min-device-width: 768px) {
    .site-section-wired {
        flex-direction: row;
        gap: 15vw;
    }
    .app-recording {
        width: 23vw;
    }
    h2 {
        font-size: 5vw;
        line-height: 5.1vw
    }
    p {
        font-size: 1.5vw;
        line-height: 1.6vw;;
    }
    .highlight-text {
        font-size: 1.7vw !important;
        line-height: 1.7vw !important;
    }
}

@keyframes spinInRightNoMenu {
    0%   {transform:  translateX(200%) rotate(500deg)}
    50%   {transform: translateX(0%) rotate(0deg);}
    100% {transform: translateX(0%) rotate(15deg) }
}