html, body
{
    background-image: linear-gradient(180deg, rgb(0, 50, 100) 5%, rgb(0, 0, 0) 50%);
    font-family: arial;
    margin-top: 0;
    margin-left: 0;
    overflow: hidden;
}

.form-input
{
    width: 28vw;
    height: 2.8vw;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);


    text-align: center;
    display: grid;
    align-items: center;
    font-size: 1.5vw;
    color: rgba(220, 220, 220, 1);

    padding: 1vh;
    font-family: arial;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgb(100, 100, 100);
    box-sizing: border-box;
    outline: none;
    overflow: hidden;
}

#welcome-title 
{
    width: 40vw;
    height: 5vw;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);

    text-align: center;
    display: grid;
    align-items: center;
    font-size: 3vw;
    color: rgba(220, 220, 220, 1);
    opacity: 0;

    animation: welcome-title-scaling 8s infinite cubic-bezier(0.5, 0, 0.5, 1);
    transition: opacity 1s ease-in-out;
    user-select: none;
}
@keyframes welcome-title-scaling 
{
    0%,100% { transform: translate(-50%, -50%) scale(0.85); }
    50%     { transform: translate(-50%, -50%) scale(0.95); }
}
#welcome-title:hover
{
    cursor: pointer;
}