#title {
    text-align: center;
    font-size: 100px;
    color: red;
    margin-top: 10%;
    margin-bottom: 0;
    font-weight: bold;
}

body {
background-color: #1e1e2f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#out {
    text-align: center;
    font-size: 50px;
    font-style: italic;
    color: #99FF99;
    margin: 0;
    padding: 0;
}

div {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

button {
    padding: 12px 24px;
    font-size: 18px;
    color: rgb(227, 140, 26);
    background-color: transparent;
    border: 2px solid rgb(227, 140, 26);
    border-radius: 50%; /* circular buttons */
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
   
}

button:hover {
    cursor: pointer;
    background-color: rgb(227, 140, 26);
    color: black;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgb(227, 140, 26);
}




