@font-face {
    font-family: EmOne;
    src: url(emone.otf);
}

@property --light-color {
    syntax: "<color>";
    inherits: false;
    initial-value: rgba(100, 100, 100, 0.2);
}

* {
    margin: auto;
    text-align: center;
}

body{
    background-color: black;
}

.light {
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);

    width: 100vw;
    height: 100vh;

    background: radial-gradient(circle at top, var(--light-color) 0%, transparent 80%);
    filter: blur(2px);

    transition: --light-color 1.2s ease;
}

main { 
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    
    width: 600px;
    height: 400px;
    padding: 25px;
    
    align-content: center;
    
    border-radius: 20px;
    
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.02);
    color: white;
    
    box-shadow: 0 20px 39px 10px rgba(0,0,0,0.2);
}

h1 {
    user-select: none;
    font-family: EmOne;
    font-size: 100px;
    padding: 10px 0 0;
}

h2 {
    user-select: none;
    font-family: EmOne;
    font-size: 20px;
    font-weight: 100;

    padding: 0 0 20px 0;
    margin-top: -40px;
}

input {
    font-size: 20px;
    border: none;
    border-radius: 20px;

    width: 300px;
    padding: 20px;
    margin-bottom: 15px;

    background-color: rgba(255, 255, 255, 0.7);
    transition: all 1s;

    text-align: left;
}

input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 1);
    transition: all 1s;
}
