html, body {
    position: absolute;
    background-color: hsl(260, 100%, 70%);
    color: hsl(190, 100%, 75%);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

#siteText {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 200px;
}

#siteText h2 {
    margin-bottom: 100px;
}

#userArea {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#userArea button {
    height: 60px;
    width: 60px;
    text-align: center;
    background-color: hsl(300, 100%, 84%);
    border: 2px white solid;
    color: white;
    transition: transform 50ms ease;
}

#userArea button:hover {
    transform: translateY(-2px);
}

#userArea button:active {
    transform: translateY(0px);
}

#userArea input {
    height: 64px;
    width: 100px;
    margin-right: 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    background-color: hsl(300, 100%, 84%);
    border: 2px white solid;
    color: white;
}

#userArea input:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsla(300, 100%, 100%, 0.3);
}

#chances {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

#chances h2 {
    position: relative;
    top: 200px;
    
}
