body
{
    background-color: rgb(5, 5, 14);
    box-sizing: border-box;
}
#form
{
    position: relative;
    top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    font-family: "Courier New";
    color: white;
}
img
{
    width: 40vw;
}
label
{
    text-align: center;
    padding: 20px;
}
label.hidden
{
    color: rgb(5, 5, 14);
}
#answers
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}
.form-answer
{
    background-color: rgb(5, 5, 14);
    border: 3px solid white;
    border-radius: 5px;
    padding: 7px;
    margin: 20px;
    width: 175px;
    height: 25px;
    font-family: "Courier New";
    color: white;
}
button
{
    position: relative;
    color: white;
    width: 150px;
    height: 40px;
    padding: 10px 15px;
    margin: 40px;
    font-family: "Courier New";
    font-size: 18px;
    text-align: right;
}
button::after
{
    content: "";
    width: 50px;
    height: 35px;
    position: absolute;
    top: 33px;
    left: 100px;
}
button, button::after
{
    background-color: rgb(168, 168, 168);
    border-radius: 5px;
    border: 0px;
    box-shadow: 0px 4px rgb(120, 120, 120);
    transition: background-color .2s;
}
button:hover
{
    top: 4px;
    cursor: pointer;
}
button:hover, button:hover::after
{
    background-color: rgb(111, 111, 111);
    box-shadow: 0px 0px;
}
.shiny 
{
    border-color: rgb(221, 33, 167);
    animation: pulse 2s ease-in-out infinite alternate;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 40px rgb(245, 29, 184);
    }
    100% {
        box-shadow: 0 0 10px rgb(245, 29, 184);
    }
}
a, p
{
    display: block;
    color: white;
    font-family: "Courier New";
    padding: 20px;
    margin: 40px 25px;
    text-align: center;
    transition-duration: .2s;
    text-decoration: none;
}
a.p-like
{
    display: inline;
    padding: 0;
    margin: 0;
}
div.bottom-p
{
    color: white;
    font-family: "Courier New";
    margin: 0;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%);
    opacity: 30%;
}
a:hover
{
    color: lightgrey;
}
@media screen and (max-width: 800px) {
  #answers {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
}

@media screen and (max-width: 600px) {
  #answers {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
    .form-answer
    {
        margin: 10px;
        width: 50vw;
    }
}