body {
    background-color: black;
    color: white;
    text-align: center;
    font-family: shash29;
    font-size: 60px;
    user-select: none;
}


.outdated {
    font-size: 35px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.continue {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.continue:hover {
    color: #ff0000;
}

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

.bio {
    font-size: 35px;
    color: white;
    text-decoration: none;
    border: solid;
    border-width: 0px 2px;
    padding: 5px 15px;
    border-color: red;
    transition: padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.bio:hover {
    padding-top: 15px;
    padding-bottom: 15px;
    border-width: 2px 2px;
    border-radius: 5px;
}