@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 500;
}

:root {
    --colorSurface: #333;
    --background: #101010;
    --highEmphasisText: #fff;
    --mediumEmphasisText: rgba(255, 255, 255, 0.5);
}

body {
    min-height: 100vh;
    min-width: 100%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5em;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: var(--highEmphasisText);
    margin-bottom: 2rem;
}

h3 {
    color: var(--highEmphasisText);
    margin-bottom: 1rem;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

a {
    color: black;
    text-decoration: none;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: 0.25s;
}

a:hover {
    box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 10px;
}

a:active {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}