body {
    background-color: #020403;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

 .buttons {
     display: flex;
     flex-direction: column;
     align-items: center;
 }


 .homebtn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: #ff7900;
     color: white;
     border: none;
     font-size: 0px;
     font-weight: bold;
     cursor: pointer;
     box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
     transition: background-color 0.3s ease;
 }

 .homebtn:hover {
     background-color: #e26a00;
 }