*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  'Poppins', sans-serif;
}

body{
    background-color: #8F8389;
    background-repeat: no-repeat;
    background-size: cover;
    font-family:'Courier New', Courier, monospace;
}

.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    max-width: 800px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem 3rem;
    gap: 2rem;
    line-height: 2.5;
    font-size: 1rem;
}

button{
    background-color: #D4C1EC;
    border-radius: 30px;
    padding: 1em;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(132, 45, 113);
    cursor: pointer;
    
    &:hover {
        filter: brightness(90%);
    }
}

#result{
    text-decoration: underline;
}

h3{
    display: flex;
    align-items: center;
}

input{
    padding: 1em;
    margin-bottom: 1em;
    height: 2.5em;
    font-family: Arial, sans-serif;
    font-size: .75rem;
    letter-spacing: .5px;
    border: 2px  solid #8F8389;
    text-decoration: unset;
    border-radius: 20px;
}

select{
    border: 1px solid #848482;
}

label, .actresult{
    color: black;
}

@media screen and (max-width: 768px){
    h3{
        flex-direction: column;
    }

    input{
        width: 100%;
        margin-bottom: .5em;
    }
    select{
        width: 90%;
    }
}

footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    box-shadow: 0 -1px 1px rgba(0,0,0,.2), 0 -2px 2px rgba(0,0,0,.1);
    font-weight: 900;
}