*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
}
body{
    background-color: black;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}
.hidden {
    display: none;
}
h1{
    padding: 10px;
    display: inline;
    background-color: gray;
    border: 1px solid white;
    border-radius: 10px;
}
main{
    display: flex;
    width: 100%;
    height: 90%;
    padding-block: 10px;
    justify-content: center;
}
button, .submit{
    border: 1px solid white;
    border-radius: 10px;
    background-color: rgb(0, 0, 77);
    color: white;
    padding: 10px;
    font-size: xx-large;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}
button:hover, .submit:hover{
    box-shadow: 2px 2px 5px white;
    transform: translateY(-3px);
}
#nextButton, #main-form {
    display: none;
    transition: opacity 0.5s ease;
    opacity: 0;
    transition: 0.3s;
    margin-top: 10px;
}
#nextButton.show, #main-form.show {
    display: inline-block;
    opacity: 1;
}
form > input {
    font-size: 20px;
    background-color: rgb(0, 0, 77);
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    padding: 3px;
    margin: 3px;
    text-align: center;
}

form {
    margin-top: 50px;
}
#female{
    margin-left: 10px;
}
.content{
    display: grid;
    grid-template-areas: 
    "left main right" ;

    grid-template-rows: 768px;
    grid-template-columns: 30% 40% 30% ;

    border: 1px solid white;
    height: 768px;
    width: 90%;
    background-color: rgb(0, 0, 77);
    text-align: center;
}
#left{
    grid-area: left;
    padding: 35px;
}
#lorem1{
    display: block;
    border: 1px solid white ;

    width: 100%;
    height: 90%;
}
#main{
    grid-area: main;
}
#right{
    grid-area: right;
    padding: 35px;
}
#lorem2{
    display: block;
    border: 1px solid white;

    width: 100%;
    height: 90%;
}
#lorem1, #lorem2{
    padding: 10px;
    color: green;
    background-color: black;
    text-align: start;
}
#text{
    justify-content: center;
    font-size: xx-large;
    padding-block: 100px;
}
#text::after {
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
@media (max-width: 768px){
    *{
        font-size: 10px;
    }
    .content{
        grid-template-areas:
            "main"
            "left"
            "right";
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
}