*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 500;
    font-family: "JetBrains Mono", sans-serif;
    font-size: 18px;
    overflow: hidden;
    cursor: default;
}

body{
    width: 100vw;
    height: 100dvh;
    background-color: #2f2f2f;
}

.container{
    width: 100%;
    height: 100%;
    background-color: #2f2f2f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invite-container{
    width: 450px;
    min-width: 320px;
    height: auto;
    max-height: 400px;
    background-color: #262626;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.profile-card{
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}

.stella-image{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #5865F2;
    border-radius: 50%;
}

.stella-name{
    padding-top: 10px;
    font-size: 20px;
}

.buttons{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

a{ 
    width: 100%; 
    text-decoration: none;
}

.invite-message{
    margin-bottom: 30px;
}

.btn{
    width: 100%;
    display: block;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #5865F2;
    border: none;
    outline: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover{
    background-color: #4752C4;
}

.fa-brands{
    font-size: 20px;
    vertical-align: middle;
}

a, .btn, .fa-brands{ cursor: pointer;}

.pfp-credit{
    font-size: 10px;
    margin-top: 20px;
    color: #6B6B6B; 
}

@media(max-width: 480px){
    *{
        font-size: 15px;
    }

    .invite-container{
        width: 340px;
    }

    .stella-image{
        width: 65px;
        height: 65px;
    }
}