body {
    margin: 0;
    background-color: #a5a5bb;
    font-family: Arial, sans-serif;
}

main {
    min-height: 100vh;
}

.header {
    background-color: #342559;
    color: #bbb;
    text-align: center;
    justify-content: center;
    padding: 1rem 0;
    padding-bottom: 2.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.main-container {
    /* flex: 1; */
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* padding: 1rem; */
    
    padding-left: 25%;
    padding-right: 25%;
    text-align: left;
}

.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: white;
    margin-top: auto;
}

#inputs {
    display: flex;
    flex-direction: column;
}

#font-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

textarea {
    resize: vertical;
}

input[type="button"] {
    
}

#animation {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    
    padding-left: 10px;
    padding-right: 50px;
    /* margin: auto; */
    /* margin-right: 20px; */
    max-width: 95%;
    
    cursor: none;
    
    justify-content: center;
    align-items: center;
    text-align: center; /* <= this makes it center 'like in Word' */
}