/* A very basic CSS reset */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up the body for full height and basic font styles */
html,
body {
    height: 100%;
    width: 100%;
    font-family: "DM Sans", sans-serif;
}
.container{
    height: 100vh;
    width: 100%;
    background-color: rgb(32, 31, 31);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}
.container h1{
    color: #fff;
    font-size: 8rem;
    font-weight: 700;
    cursor: none;
    text-align: center;

}
.container h2{
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    cursor: none;
    text-align: center;
}
@media (max-width: 500px) {
    .container h1{
        font-size: 4.5rem;
    }
    .container h2{
        font-size: 1.2rem;
    }
}
.spotlight{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at var(--x) var(--y),
        transparent 0%,
        rgba(0,0,0,0.95)
    );

}