body{
    background-color: #f9f1e5;
    font-family: "Monico", monospace;
}

header{
    display: fixed;
    top: 0;
    left: 0;
    color: #512198;
}

#header_box{
    position: relative;
    display: flex;
    justify-content: space-between; /* horizontal spacing */
    align-items: center
}

#inputForm{
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 200px;
}

input{
    width: 100%;
    max-width: 300px;
    font-size: 20px;
    margin-bottom: 20px;
    padding: 5px;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #ddd7cc;
    border: 1px solid black;
    box-shadow: 0 4px 8px 0 #775ba1, 0 6px 20px 0 #775ba1;

}

#submitButton{
    width: 100%;
    max-width: 300px;
    font-size: 20px;
    padding: 5px;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #512198;
    border: 1px solid black;
    color: white;
    box-shadow: 0 4px 8px 0 #ddd7cc, 0 6px 20px 0 #ddd7cc;

}

@keyframes sizing {
    from {transform: scale(1);}
    to {transform: scale(1.05);}
}

input:hover, button:hover, .social_button:hover{
    animation: sizing 1s;
}

#message{
    margin-bottom: 20px;
}

#social{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.social_button{
    width: 30px;
    height: 30px;
    border-radius: 32;
    box-shadow: 0 4px 8px 0 #775ba1, 0 6px 20px 0 #775ba1;
    padding: 0;
    border:none;
    background-color: #775ba1;
    border-radius: 8px;
}

.social_button img{
    width: 100%;
}