:root{
    --bg-color: #17151e;
}

body {
    background: linear-gradient(to bottom right, cyan, purple);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    overflow-x: hidden;

    font-family: sans-serif;
    text-align: center;
    font-size: larger;
    color: white;
}

.container{
    position: relative; 
}

.dots{
    background-image: radial-gradient(transparent 20%, var(--bg-color) 20%);
    background-position: 0 0;
    background-size: 10px 10px;
    min-width: 100vw;
    min-height: calc(100vh + 60px);
    margin: -30px;
    background-attachment: fixed;
}

.text-box{
    background-color: var(--bg-color);
    border: 1px solid rgb(79, 79, 85);
    border-radius: 24px;

    margin: 1.5rem;
    padding: 1.5rem;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center; 
}