@import url('https://fonts.googleapis.com/css2?family=Macondo&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    width: 100vw;
    min-height: 100vh;
    background-image: url('2e352a34f29bd02eadca4b5d39136fd9.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: antiquewhite;    
}
#heading{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size:70px;
    text-shadow: 1px 1px 20px antiquewhite;
    font-family: "Macondo";
    letter-spacing: 5px;
}

.main{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    margin-top: 100px;
    font-size: x-large;
}

.input{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

input{
    padding: 10px;
    width: 20vw;
    height: 3vh;
    border-radius: 10px;
    text-align: center;
    font-size: medium;
}

button{
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#arrayofnums{
    text-align: center; 
}

@media (min-width: 768px) and (max-width: 1024px) {
    #arrayofnums{
        font-size: 33px;
    }
}


/* Most modern smartphones */
@media (min-width: 100px) and (max-width: 767px) {
    #heading{
        font-size:30px;
        text-align: center;
    }
    input{
        width: 40vw;
        
    }
    #arrayofnums{
        font-size: 18px;
    }
}
