body {
    background: rgba(30,30,30);
    height: 100vh;
    display: flex;
    margin: 0;
    user-select: none;
    background-repeat: repeat;
    overflow: hidden !important;
}
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 200 1000;
    font-stretch: 100%;
    font-display: swap;
    src: url(../fonts/NunitoSans.woff2) format('woff2');
}
* {
    font-family: Nunito Sans;
    box-sizing: border-box;
}
.content {
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    border: 2px solid red;
    margin: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../assets/raypattern.svg);
    background-size: 2%;
    padding: 20px;
}
.head {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}
.subhead {
    font-weight: 300;
    font-size: 20px;
    text-align: center;
}
.discordbutton {
    background: #5865F2;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    height: 40px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    transition: opacity 0.2s;
}
.discordbutton img {
    height: 22px;
}
.discordbutton:hover {
    opacity: 0.8;
}
.error {
    color: red;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 800px) {
    .content {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        margin: 20px;
    }
    .head {
        font-size: 30px;
    }
}