@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(21, 22, 24);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-image: url('../assets/logo.png');
    background-size: cover;
    background-position: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p, a {
    font-size: 1.2em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    color: #cccccc;
}