body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: rgb(92, 113, 163);
    font-size: 1.02vw;
    height: 100%;
}
a {
    margin: 0vw 1vw;
}
nav {
    position: relative;
    display: flex;
    justify-content: space-around;
}
.amogus img {
    width: 10vw;
    margin: 1.5vw;
}
.shadow {
    position: absolute;
    width: 100%;
    height: 14.8vw;
    margin: 3vw 0vw 0vw 0vw;
    box-shadow: 0 0.3vw 0.5vw -0.01vw rgb(61, 61, 61);
    z-index: -2;
}


article {
    margin: 8% 6% 8% 6%;
    display: flex;
    justify-content: space-between;
    color: white;
}
article input, label, article input[type=submit], p {
    font-size: 1.7vw;
    border: none;
}


article input, textarea, article img {
    box-shadow: 0 0.3vw 0.5vw -0.01vw rgb(61, 61, 61);
    border-radius: 4px;
}
article input[type=submit] {
    background-color: rgb(232, 203, 134);
    padding:0.8vw;
    transition:0.4s;
    color: black;
    cursor: pointer;
}
article input[type=submit]:hover, article img:hover{
    transform:scale(1.02);
}
#comment {
    width: 90%;
    height: auto;
}
form p {
    text-shadow: 0.08vw 0.1vw 0.3vw #000000;
    margin:2% 0 2% 0;
}
label{
    text-shadow: 0.08vw 0.1vw 0.3vw #000000;
}
article section p {
    text-shadow: 0.08vw 0.1vw 0.3vw #000000;
}
article section {
    width: 40vw;
}
article img {
    width: 100%;
    transition: 0.4s;
}


footer {
    background-color: rgb(232, 203, 134);
    display: flex;
    justify-content: space-around;
    position: absolute;
    bottom: -1;
    width: 100%;
    box-shadow: 0 -0.3vw 0.5vw -0.01vw rgb(61, 61, 61);
}
footer div {
    margin: 1% 0 1% 0;
}
h3 {
    margin: 0;
    font-size: 1vw;
}
footer p {
    margin: 0;
    color: black;
    font-size: 1vw;
}


@media only screen and (max-width: 768px) {
    footer p, h3 {
        font-size: 2vw;
    }
    article input, article p, article label, article input[type=submit] {
        font-size: 2.5vw;
    }
}
@media only screen and (max-width: 426px) {
    article {
        margin-top: 6vw;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    footer p, h3 {
        font-size: 3vw;
    }
    article input, article p, article label, article input[type=submit] {
        font-size: 3.5vw;
    }
    footer {
        flex-direction: column;
    }
    footer div {
        text-align: center;
    }
}