* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "sans-serif";
}

a {
    color: white;
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.25rem;
}

nav img {
    width: 9.375rem;
}

nav .esquerda ul {
    list-style: none;
    display: flex;
}

nav .esquerda {
    display: flex;
}

nav .esquerda ul li {
    margin-left: 0.94rem;
}

nav .esquerda #menu {
    background-color: black;
}

nav .esquerda #menu i {
    color: white;
}

nav .esquerda #menu {
    display: none;
}

nav .esquerda #close_menu {
    display: none;
}

.butao {
    display: flex;
    justify-content: center;
    margin-top: 0.94rem;
}

.butao .btn {
    color: black;
    background-color: #ffc862;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.88rem;
    -webkit-border-radius: 1.88rem;
    -moz-border-radius: 1.88rem;
    -ms-border-radius: 1.88rem;
    -o-border-radius: 1.88rem;
    font-size: 1rem;
}

button {
    cursor: pointer;
    border: 0px;
}

.fazer-login {
    border: 1px solid orange;
    background: orange;
    padding: 0.5rem;
    border-radius: 17px;
}

footer {
    display: flex;
    justify-content: space-between;
    height: 4rem;
    align-items: center;
    border-top: 0.5rem solid #1e1e1e;
    margin-top: 5rem;
    background-color: black;
    color: white;
}

@media only screen and (max-width: 598px) {
    #menu_bar {
        display: none;
    }

    #close_menu {
        background-color: black;
        color: white;
        display: block;
    }

    nav .esquerda #menu {
        display: block;
    }

    footer {
        height: 200px;
    }
}

@media only screen and (max-width: 400px) {
    #menu_bar {
        font-size: 11px;
    }
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.block {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}
