* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    text-decoration: none;
}

body {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: 100px auto 50px;
    grid-template-columns: 200px auto;
}

body #navbar {
    z-index: 0;
    background-color: tan;
    grid-area: 1 / 1 / 4 / 2;
    transition-duration: 200ms;
}

body #header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(152, 243, 175);
    grid-area: 1 / 1 / 2 / 3;
    flex-direction: column;
}

body #header #phrase {
    font-size: 30px;
}

body #header #title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(152, 243, 175);
    grid-area: 1 / 1 / 2 / 3;
    font-size: 60px;
    color: tan;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    
}

body #content {
    background-color: rgb(152, 243, 175);
    grid-area: 2 / 1 / 3 / 3;
}

body #footer {
    background-color: black;
    grid-area: 3 / 1 / 4 / 3;
    display: flex;
    justify-content: center;
}

body #navbar #top {
    display: grid;
    margin: 20px;
    grid-template-columns: auto;
    grid-template-rows: auto;
}

body #navbar #top img {
    grid-area: 1/1/1/1;
}

body #navbar #top #arrow {
    grid-area: 1/1/1/1;
    transform: translate(200px);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
}

body #navbar #top #arrow span {
    display: block;
    background-color: black;
    width: 40px;
    height:5px;
    border-radius: 5px;
    transform: rotate(45deg);
}

body #navbar #top #arrow #arr_1 {
    margin-bottom: 20px;
    transform: rotate(-45deg);
}

body #navbar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

body #navbar ul li {
    cursor: pointer;
    padding: 15px;
    transition-duration: 100ms;
}

body #navbar ul li:hover {
    background-color: aqua;
}

body #footer img {
    height: 50px;
    width: auto;
    margin-left: 10px;
}

.disapear {
    transform: translate(-200px);
}