
body {
    background-color: #000000;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.33;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 0px;
    margin-right: 5px;
}

#body > img {
    height: 250px;
    object-fit: contain;
}
@media (max-width: 750px) {
    #body > img {
        height: 170px;
        object-fit: contain;
    }
}

#textsection {
    font-size: 18px;
    max-width: 750px;
    margin: 20px 20px 20px 20px;
    text-align: left;
}
@media (max-width: 750px) {
    #textsection {
        max-width: 350px;
        font-size: 16px;
    }
}

.centeredstuff {
    font-size: 17px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}
@media (max-width: 750px) {
    .centeredstuff {
        font-size: 16px;
        max-width: 270px;
    }
}
#centeredstuff .register-button {
    opacity: 1;
    height: 25px;
}
#centeredstuff .register-button:hover {
    opacity: 0.7;
}
.centeredstuff .signup-button:hover {
    opacity: .7;
}
.signup-button {
    opacity: 1; 
    background-color: #93b535; /* Green */
    color: white;
    padding: 3px 20px;
    text-align: center;
    font-size: 16px;
    margin: 10px 12px;
    cursor: pointer;
    border-radius: 7px; /* Rounded corners */
}

a {
    text-decoration: none;
    color: inherit;
}

input[type="email"] {
    height: 22px;
    vertical-align: top;
    margin-bottom: 6px;
}

.background {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    object-fit: cover;
}

footer {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 750px) {
    footer {
        font-size: 12px;
    }
}

.desktop {
    display: none;
}

@media (min-width: 750px) {

    .desktop {
        display: initial;
    }

    .mobile {
        display: none;
    }
}