@font-face {
    font-family: Minecraft Five;
    src: url('./assets/Minecraft\ Five.otf');
}

html {
    width: 100vw;
}

body {
    margin: 0;
    background: rgb(39, 39, 39);
}

#header {
    width: 100vw;
    padding: 10px 0px 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: rgb(211, 211, 211);
}

#links {
    display: inline-flex;
    width: 100vw;
}

#link {
    border-left: rgb(97, 97, 97) 2px solid;
    border-right: rgb(97, 97, 97) 2px solid;
    background: rgb(223, 223, 223);
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: inherit;
    transition: all 0.2s ease;
    font-family: Minecraft Five;
    font-size: 20px;
    height: 60px;
}

#link:hover {
    background: rgb(200, 200, 200);
}