@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Comme&family=PT+Sans+Narrow:wght@700&family=Poppins&family=Sono&family=Source+Sans+Pro:ital@1&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Righteous', cursive;
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-image: url(rome.jpg);
    background-size: cover;
    height: 100vh;

}

main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(140deg, rgb(149, 175, 0), rgb(255, 0, 0));
    padding: 10px;
    border-radius: 10px;
    animation: main 2s;
    border: solid 2px black;
    box-shadow: black 5px 10px 8px;
}

label {
    font-size: 24px;

}

input {
    width: 100px;
    height: 40px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

button {
    width: 150px;
    height: 30px;
    background-color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 1s;
    transform: scale(1.1);
}

button:hover {
    background-color: black;
    color: #fff;
    transition: .5s;
    border: none;
    transform: scale(1.5);
}

/* ANIMAÇÕES */

@keyframes main {
    from {
        filter: blur(5px);
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}

/* RESPONSIVIDADE */

#outputNumber {
    font-size: 40px;
    font-weight: bold;
}

@media (max-width: 750px) {
    main {
        width: 80%;
    }
}