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

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

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

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

header a {
    background-color: #ff0000;
    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;
    color: #FFF;
}

header a:hover {
    opacity: 0.9;
}

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

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

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

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

.about {
    display: flex;
    flex-direction: column;
    font-family: 'londrina';
    color: #FFF;
    font-size: 35px;
    width: 75%;
    text-align: center;
    font-weight: bolder;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 3px #000;
    background-color: #1b1e25;
    padding-bottom: 20px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.about h1 {
    color: #FFF;
    font-size: 55px;
    font-family: 'londrina';
    font-weight: bolder;
    padding-bottom: 20px;
}

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;
}
.anime-container {
    position: relative;
}

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

/*responsive*/

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

    /*aboutuspage*/

    header{
        flex-wrap: wrap;
    }

    footer img{
        width: 150px;
    }

    p{
        text-align: center;
    }

    .about{
        margin-bottom: 50px;
    }

}