* {
    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-image: url("../img/wall.png");
}

@font-face {
    font-family: 'londrina';
    src: url(../fonts/Londrina_Outline/LondrinaOutline-Regular.ttf);
}

header {
    height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header a {
    color: #FFF;
    font-size: 45px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 3px #000;
    padding: 15px 30px;
    font-family: 'londrina';
    font-weight: bolder;
}

header a:hover {
    opacity: 0.9;
}

header :first-child {
    background-color: #FF0000;
}

header :nth-child(2) {
    background-color: #00FF1E;
}

header :nth-child(3) {
    background-color: #FE077E;
}

header :nth-child(4) {
    background-color: #5E00FF;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact h1 {
    color: #FFF;
    font-size: 70px;
    font-family: 'londrina';
    margin-bottom: 20px;
}

.contact h2 {
    font-size: 35px;
    font-family: 'londrina';
    color: white;
    margin-bottom: 30px;
}

.contact h3 {
    font-size: 35px;
    font-family: 'londrina';
    color: white;
    margin-left: 20px;
}

.contact p {
    color: white;
    font-size: 30px;
    font-family: 'londrina';
    font-weight: bold;
}

.contact p:last-of-type {
    margin-bottom: 20px;
}

#input {
    width: 400px;
    height: 160px;
    margin: 5px 20px 20px 20px;
}

#email {
    width: 175px;
    height: 40px;
}

#name {
    width: 175px;
    height: 40px;
    margin-right: 10px;
    margin-left: 20px;
}

#submit {
    width: 400px;
    margin: 0px 20px 20px 20px;
}

.form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    margin-bottom: 30px;
    width: 410px;
    background: radial-gradient(circle, #3D3D40 40%, #5C5A5B 100%);
    border-radius: 10px;
    box-shadow: 0px 0px 20px 3px #000;
}

.formbox{
    display: flex;
    justify-content: center;
}

.anime-container {
    position: relative;
}

.anime-container .dot {
    position: absolute;
    border-radius: 50%;
    background-color: hsl(4, 100%, 60%);
    pointer-events: none;
}

footer {
    display: flex;
    width: 100%;
    height: 24vh;
    background: radial-gradient(circle, #3D3D40 40%, #5C5A5B 100%);
    justify-content: space-between;
    align-content: flex-end;
    flex-wrap: wrap;
    margin-top: auto;
}

/*responsive*/

@media only screen and (max-width:600px) {

    /*homepage*/

    header {
        flex-wrap: wrap;
    }

    footer img {
        width: 150px;
    }

    p {
        text-align: center;
    }

    .contact h2{
        display: flex;
        justify-content: center;
        width: 300px;
    }

    .form{
        width: 350px;
    }

    #name{
        display: flex;
        margin-left: 20px;
        width: 130px;
    }

    #email{
        width: 163px;
    }

    .contact h3{
        margin-left: 22px;
    }

}