@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Merienda:wght@500&display=swap');

*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100vw;
    background-image: url("bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
}

#main-container{
    width: 60%;
    height: 100%;
    text-align: center;
    padding-top: 3%;
}

h1{
    font-family: 'Merienda', cursive;
    font-size: 3rem;
    color: #AC11F1;
}

h2{
    margin-top: 6%;
    color: rgb(102, 97, 97);
}

input{
    margin-top: 2%;
    height: 7%;
    width: 27%;
    outline: none;
    border: none;
    border: 1px solid;
    border-radius: 10px;
    font-size: 1.2rem;
    padding: 1.5%;
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button{
    display: block;
    margin: auto;
    margin-top: 6%;
    padding: 1%;
    width: 10%;
    font-size: 1rem;
    border-radius: 40px;
    border: none;
    border: 1px solid black;
    color: white;
    background-color: #AC11F1;
    margin-bottom: 6%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

button:hover{
    cursor: pointer;
    transform: scale(1.03);
}

#output{
    width: 68%;
    font-weight: bold;
    font-size: 2.6rem;
    margin: auto;
    color: rgb(73, 71, 71);
}