*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
body{
    background: 
   radial-gradient(circle at 20% 20%, #fff9c4 0%, transparent 35%),
    linear-gradient(135deg, #87CEEB, #2c67f2);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#top{
    color: whitesmoke;
    background: #5c5b5b;
background: linear-gradient(90deg, rgba(92, 91, 91, 1) 0%, rgba(88, 97, 92, 1) 50%, rgba(51, 11, 11, 1) 100%);
position: absolute;
top: 0;
height: 100px;
width: 100%;
text-align: center;
font-size: 60px;
font-family: 'Courier New', Courier, monospace;
padding: 15px;
}

.container{
  background: 

        radial-gradient(circle at 20% 20%, #fffde7 0%, rgba(255, 249, 196, 0.3) 30%, transparent 55%),
        linear-gradient(135deg, #64b5f6, #1e88e5);  
width: 300px;
height: 300px;
border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 5px 5px 25px black;
    padding: 20px;
    display: flex;
    gap: 25px;
    flex-direction: column;
    font-size: 25px;
    font-family:fantasy;
    border-radius: 10px;
}

input {



    font-family: 'Press Start 2P', cursive;
    margin-bottom: 10px;
    border-radius: 5px;
    width: 170px;
    height: 25px;
}

button{
    background-color: rgb(30, 136, 229,0.1);
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 18px;
    margin-left: 34px;
    border-radius: 10px;
    cursor: pointer;
font-size: 20px;
}
button:hover{
transform: scale(1.04);
}
#result{
    font-size: 0.9em;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}
