*{
    padding: 0;
    margin: 0;
}

body{
    font-family: "Montserrat", serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #393152;
}

.server{
    width: 45%;
}

h1{
    color: #fff;
    margin-top: 20px;
}

p{
    color: #fff;
    margin-top: 10px;
    font-weight: 600;
}

.links{
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}

.links a{
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.links a:hover{
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}
