@import 'global.css';

#bg {
    background-image: url(/images/bg2.jxl);
    background-size: cover;
    display:block;
    position: fixed;
    height: 100%;
    width: 100%;
}

#container {
    width: 400px;
    height: 300px;
    justify-content: center;
    align-items: center;
    background-color: var(--dark);
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

h1 {
    text-align: center;
    font-size: 48px;
    margin: 10px;
    font-weight: 300;
}

p {
    text-align: center;
    font-size: 15px;
    margin: 10px;
}


#enter {
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: transparent;
    border: 1px solid var(--light);
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

#enter:hover {
    box-shadow: 3px 3px var(--mid2);
}
#enter:active {
    background-color: var(--light);
    color: var(--dark);
}
#enter:focus {
    outline: none;
}
