@font-face {
    font-family: "Info";
    src: url("PuzSansVF.ttf");
}


body {
    background-color: black;
    color: #2CF136;
    margin: 0;
    font-family: "Info";
}

h1, h2 {
    font-family: "Info";
}
nav {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #2CF136;
    box-shadow: 0px 0px 10px #2CF136;
    position: sticky;
    top: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 99;
}

.top_section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 30rem;
    line-height: 0.5;
}

.top_section h1 {
    font-size: 36px;
}

.middle_section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
}

aside {
    width: 30%
}
.bottom_section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 15rem;
    line-height: 0.5;
}

a button {
    cursor: pointer;
}

button {
    background-color: #2CF136;
    font-family: "Info";
    border: 0;
    padding: 5px 10px;
    margin: 0 5px;
    transition: 0.1s;
}

button:hover {
    transform: scale(1.1);
}