﻿* {
    padding: 0;
    margin: 0;
}

#global {
    position: fixed;
    z-index: 2;
    background-color: rgb(200, 200, 200);
    width: 100vw;
    height: 6vh;
    display: flex;
    justify-content: end;
}

#global .nav {
    width: 25%;
    height: 100%;
}

#global .nav .nav_first {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

#global .nav .nav_item {
    height: 100%;
    display: none;
}

#global .nav:hover {
    background-color: rgba(255, 228, 180, 0.4);
}

#global .nav .nav_first:hover {
    background-color: rgba(253, 160, 255, 0.4);
    cursor: pointer;
}

#global .nav:hover .nav_item {
    background-color: rgba(237, 237, 237);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

#global .nav .nav_item:hover {
    background-color: rgba(156, 255, 255);
}

#meum::before {
    content: "=";
}

.intro_content {
    padding-top: 6vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro_content h1 {
    font-size: 1.4rem;
}

.intro_content h2 {
    font-size: 1rem;
}

.intro_content p {
    text-indent: 2rem;
    font-size: 1rem
}