body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #101010;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.dev {
    justify-content: center;
    align-self: center;
    height: 95vh;
    width: 95vw;
    background-color: #050505;
    box-shadow: 0 0 8px black;
    border-radius: 8px;
    color: #fefefe;
    font-weight: bold;
    /* display: block; */
    position: relative;
    transition: all 200ms;
}

.dev:hover {
    height: 98vh;
    width: 98vw;
    transition: all 200ms;
}

.content {
    font-weight: normal;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 8px;
    text-align: center;
}

.discord {
    margin-bottom: 8px;
}

i {
    font-size: 20px;
    color: #ffffff;
    text-decoration: normal;
}

p {
    text-align: center;
}

hr {
    margin-left: 1rem;
    margin-right: 1rem;
}