body {
    margin: 0px;
    font-family: "Roboto", Arial, sans-serif;
}

main {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    text-align: center;
}

h1{
    text-align: center;
}

.navbar ul{
    list-style-type: none;
    background-color: hsl(0, 0%, 25%);
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a{
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

.navbar a:hover{
    background-color: hsl(0, 0%, 10%);
    transition-duration: 0.5s;
}

.navbar li{
    display: flex;
    justify-content: center;
}

.center_element {
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 0 5px 10px 5px hsl(194, 53%, 86%);
    margin: auto;
    transition: transform 0.3s ease-in-out;
    margin-top: 10px;
}
.center_element:hover {
    transform: scale(1.05);
}

.foota {
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jewtext {
    color: rgb(80, 126, 255);
}

  @keyframes rainbow {
    0% { color: hsl(0, 100%, 50%); }
    14% { color: hsl(50, 100%, 50%); }
    28% { color: hsl(100, 100%, 50%); }
    42% { color: hsl(150, 100%, 50%); }
    56% { color: hsl(200, 100%, 50%); }
    70% { color: hsl(250, 100%, 50%); }
    84% { color: hsl(300, 100%, 50%); }
    100% { color: hsl(350, 100%, 50%); }
  }

  .rainbow-text {
    animation: rainbow 4s infinite linear; /* Adjust duration and timing as desired */
    /* Optional: Add a transition for smoother appearance if toggling class */
    transition: color 0.3s ease-in-out;
  }