@font-face {
    font-family: "Poppins";
    src: url(Poppins.ttf);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins";
    color: white;
}

.text {
    margin-top: clamp(2rem, 10vh, 10rem);
    font-size: clamp(1rem, 4vw, 3rem);
    text-align: center;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid white;
    padding: 1em;
    margin-inline: auto;
    max-width: 1050px;
}

h2 {
    font-size: 0.8em;
}

body {
    background-color: black;
    min-height: 100vh;
    background-image: url(background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}