@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
body {
    margin: 0;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: black;
    color: white;
}

.greeting {
    display: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#socials {
    text-align: center;
}

h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    margin-bottom: 42px;
}

.social-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

a {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    padding: 14px 20px;
    margin: 8px 0;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: hidden;
    border-radius: 100px;
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: #2c2c2c;
    color: rgb(226, 111, 236);
}