@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

/* Default */
:root {
    font-family: "Poppins", sans-serif;
    color: white;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a50b0;
    background: linear-gradient(110deg,rgba(42, 80, 176, 1) 0%, rgba(189, 63, 224, 1) 50%, rgba(237, 59, 59, 1) 100%);
}

/* Container */
.container {
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.container .header {
    height: 7rem;
}

/* Links */
.links {
    display: flex;
    gap: 2rem;
}

.links a {
    color: white;
    font-weight: 400;
    font-size: 1.3rem;
    text-underline-offset: 0.2rem;
}

.links a:hover {
    color: rgb(200, 200, 200);
}