@font-face {
    font-family: 'oli_font';
    src: url('../font/oli_font.ttf') format('truetype');
    font-weight: 900;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 10vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.header a,
.header h2 {
    color: white;
    text-decoration: none;
    font-size: 2em;
    font-family: "oli_font";
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header a:hover {
    transform: scale(1.4);
}

.header h2 {
    padding: 5px 20px;
    font-size: 2.5em;
    border: 2px solid white;
    border-radius: 30px;
}