
body{
    background-color: #1f2335;
    color: white;
}

.settings, .info{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 100ms ease-in-out;
    border: 1px solid black;
    border-radius: 8px;
    z-index: 10;
    background-color: #1f2335;
    color: white;
    width: 600px;
    max-width: 80%;
}

.settings.active, .info.active{
    transform: translate(-50%, -50%) scale(1);
}

.settings-header, .info-header{
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid black;
    font-size: 20px;
}

.settings-body, .info-body{
    padding: 20px 15px;
}

#overlay{
    position: fixed;
    transition: 100ms ease-in-out;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

#overlay.active{
    opacity: 1;
    pointer-events: all;
}

input, textarea, button{
    padding: 10px 10px;
    background-color: #454e76;
    border-radius: 10px;
    border-color: #5d699f;
}

#resultText{
    font-weight: 700;
    font-size:  20mm;
}

#inputHide, #inputWordCount{
    height: 20px;
    width: 20px;
}