* {
    margin: .2rem !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

body {
    background-color: rgb(236, 236, 236);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
}

h1 {
    font-size: 3rem;
}

a {
    text-decoration: none;
    text-underline-offset: 100000rem; /* Firefox is notoriously annoying with underlines on <a>'s.*/
    color: black;
}

a:hover {
    color: blue;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

form {
    padding: 1rem;
    margin: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%; 
    max-width: 600px; 
}

form p {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1rem;
}

form input, form select, form textarea, form button {
    margin-left: 10px; 
    padding: 0.5rem;
    font-size: 1rem;
}

form label {
    display: inline-block;
    margin-right: 10px;
    font-size: 1rem;
}

button {
    margin-top: 1rem !important;
    width: auto;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

.output {
    border-radius: 1rem;
    margin: 1rem !important;
    background-color: rgb(214, 214, 214);
    padding: 10px;
    padding-bottom: 5px !important;
    min-height: 5rem;
    width: 60rem;
}

@media (max-width: 1200px) {
    .output {
        width: 50rem;
    }
}

@media (max-width: 992px) {
    .output {
        width: 40rem;
    }
}

@media (max-width: 768px) {
    .output {
        width: 30rem;
    }
}

@media (max-width: 576px) {
    .output {
        width: 20rem;
    }
}


.bigboom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    object-fit: cover;
    pointer-events: none;
}

.supercenter {
    display: flex;
    text-align: center;
    justify-content: center;
}