.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
    width: 100%;
}

.contactInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
    width: 100%;
}

.contactInfo p {
    margin: 0;
    text-align: center;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
}

#emailInput, #nameInput {
    font-family: 'Roboto Mono';
    width: 20vw;
    height: 3vw;
    border: none;
    border-radius: 1vw;
    text-align: center;
}

#messageInput {
    font-family: 'Roboto Mono';
    width: 39vw;
    height: 10vw;
    border: none;
    border-radius: 1vw;
    padding: 1vw;
}

#formSubmit {
    font-family: 'Roboto Mono';
    width: 20vw;
    height: 3vw;
    border: none;
    border-radius: 0.5vw;
    font-size: 1.5vw;
    font-weight: bolder;
    background-color: #DC0000;
    color: white;
    cursor: pointer;
}

h1 {
    font-size: 2vw;
    font-weight: bold;
    color: #DC0000;
    margin: 0;
}

.content p {
    font-size: 1.25vw;
}

.hidden, div.hidden {
    display: none;
    animation: none;
}

.loadingScreen {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);    
    top: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.loadingScreen img {
    width: 20vh;
    aspect-ratio: 1 / 1;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (orientation: portrait) {
    .content {
        gap: 1vh;
        justify-content: space-between;
    }

    .info {
        flex: 1;
    }

    .contactInfo {
        gap: auto;
        flex: 1;
    }

    p.hidden {
        display: block;
        visibility: hidden;
    }

    .confirmText {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #emailInput, #nameInput {
        width: 45vw;
        height: 5vh;
        border-radius: 1vh;
    }

    #messageInput {
        width: 90vw;
        height: 25vh;
        border-radius: 1vh;
        padding: 1.5vw;
    }

    #formSubmit {
        width: 50vw;
        height: 5vh;
        border-radius: 0.5vh;
        font-size: 1.5vh;
    }

    .content p {
        font-size: 4vw;
        text-align: center;
        text-wrap: wrap;
    }

    h1 {
        font-size: 6vw;
    }

    .loadingScreen img {
        width: 20vw;
    }
}