@import url(./base.css);

:root {
    background-image: url(../assets/background.png);
    background-position: -10px -10px;
}

#container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    padding: 50px;
    width: 1000px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(172, 142, 64);
    border-radius: 15px;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

#enter {
    width: 250px;
    margin-top: 15px;
    padding: 15px;
    font-size: 20pt;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    background: rgb(133, 110, 51);
    color: white;
    transition: ease 0.2s;
}

#enter:hover {
    background-color: rgb(107, 89, 41);
}
