* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #00cec9;
    color: #fff;
    font-family: "Montserrat", "Arial", "Sans-Serif";
    font-size: 22px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 10px 20px;
    margin: 0 auto 20px;
    font-size: 32px;
}
@media screen and (max-width: 670px) {
    .header {
        flex-direction: column;
        height: 250px;
    }
}

.header__bg {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    transform: translateY(50px) translateX(-200%);
    background-color: #ee94ce;
    background-size: cover;
}

.header__p {
    position: relative;
    padding: 10px 30px;
    border-radius: 12px;
    margin-left: 150px;
    font-weight: bold;
    opacity: 0;
}

@media screen and (max-width: 1080px) {
    .header__p {
        font-size: 24px;
    }
}

@media screen and (max-width: 750px) {
    .header__p {
        font-size: 20px;
    }
}

@media screen and (max-width: 1080px) {
    .header {
        justify-content: flex-start;
    }
    .header__p {
        margin-left: 20px;
    }
}

.header__logo {
    position: relative;
    bottom: -60%;
    width: 200px;
    height: 150px;
    margin-left: 20px;
    opacity: 0;
}

@media screen and (max-width: 670px) {
    .header__logo {
        bottom: -10%;
    }
}

@media screen and (max-width: 500px) {
    .header__logo {
        bottom: -5%;
    }
}

#app {
    margin: 80px auto 50px;
    background-color: #000;
    border: 1px solid #000;
    outline: none;
}
.footer {
    display: flex;
    flex-direction: column;
    height: 200px;
    background-color: #333;
    color: #2e86de;
    font-size: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1020px) {
    .footer {
        margin-top: 70px;
    }
}
@media screen and (max-width: 1020px) and (min-height: 630px) {
    .footer {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
    }
}

@media screen and (min-width: 670px) and (max-width: 1020px) {
    .footer {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
    }
}

.footer p {
    margin: 10px 0;
}

@media screen and (max-width: 900px) {
    .footer {
        padding: 0 20px;
    }

    .footer p {
        font-size: 0.8em;
    }
}

.footer a {
    color: #f5f5f5;
    font-size: 20px;
    text-decoration: none;
}

@media screen and (min-height: 1020px) {
    .wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        height: 100vh;
    }

    .container {
        width: 100%;
    }

    .footer {
        width: 100%;
    }
}

#widthError {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 20px auto;
    padding: 5px 10px;
    color: #f00;
    background-color: #000;
    text-align: justify;
    font-size: 18px;
    text-align-last: center;
    opacity: 0;
    transform: translateX(-100px);
}

@media screen and (min-width: 670px) {
    #widthError {
        margin: 80px auto 0;
    }
}

a.profileLink {
    border-bottom: 1px solid #fff;
}

