@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

* {
    box-sizing: content-box;
}

:root {
    --font-color: rgb(68, 68, 68);
}

body {
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
    font-family: sans-serif;
}

#header-name {
    font-family: 'Lilita One', cursive;
    line-height: 0;
    cursor: pointer;
    color: #ffff;
}

#header {
    position: relative;
    background-color: #2B5FB8;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

#header img {
    width: 50px;
    border-radius: 50%;
}

#background-left {
    left: 0;
    position: fixed;
    bottom: 0;
    z-index: -2;
    width: 25em;
}

#background-right {
    right: 0;
    position: fixed;
    bottom: 0;
    width: 12em;
    z-index: -2;
}


.not-active {
    transform: translateY(-100%);
}

.active {
    transform: translateY(0%);
}

#menu_button {
    cursor: pointer;
}

#menu-prc {
    position: absolute;
    background-color: white;
    border-radius: 15px;
    width: auto;
    height: auto;
    padding: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    right: 10px;
    flex-direction: column;
    display: flex;
    transition: 0.3s ease-in-out;
    z-index: 4;
}

#menu-prc a {
    text-decoration: none;
    line-height: 25px;
    transition: 0.3s ease-in-out;
}

.element_menu {
    color: black;
}

#menu-prc a:hover {
    color: #1B998B;
}

.red {
    color: red;
}

h1, h2 {
    font-family: 'Lilita One', cursive;
    color: var(--font-color);
}

.content{
    padding: 10px 30px;
    margin: 40px 50px;
    background-color: #ffff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #aaa;
}

footer {
    text-align: center;
    width: 100%;
    bottom: 0px;
}

@keyframes fadeInText {
    from {
        transform: translateY(0);
        opacity: 0;
    }
    to {
        transform: translateY(30);
        opacity: 1;
    }
}

@keyframes fadeOutText {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media screen and (max-width:900px) {
    .content {
        padding: 10px 20px;
        margin: 40px 10px;
    }
}