 @keyframes bg {
     0%, 100% {
         background-color: #1e90ff;
    }
     25% {
         background-color: #39d24a;
    }
     50% {
         background-color: #ffe244;
    }
     75% {
         background-color: #ff36a3;
    }
}
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Щоб фон був позаду контенту */
    background: radial-gradient(circle at bottom, #fff, transparent 80%),
                linear-gradient(to top, dodgerblue 0%, transparent 70%),
                linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4) 70%), #1e90ff;
    animation: bg 30s infinite;
}

/*body{
    background-image: url(../images/fon.jpg);
     background-size: cover;

   } */
.bod{
    display: flex;
    justify-content: center; /* Центрування по горизонталі */
    align-items: center;
    width: 100%;
    flex-direction: column;
}
.content{
    display: flex;
    justify-content: center; /* Центрування по горизонталі */
    
    flex-direction: column;
    width: 63.5%;
    background-color: white;
    border-style:solid;
    border-color: lightgrey;
    border-width: 0px;
    border-radius: 10px;
    box-shadow:  0 3px 4px 3px #808080;
}
.menu{

    width: 100%;
}
h1,h2{
    margin:5px;
}
h3{
    margin:5px;
    text-indent:20px;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-style:italic;
}
p{
    margin:8px;
    font-size:17px;
    font-family: "Times New Roman", Times, serif;
}
.img {
    text-align: center;
}
.img:hover{
    opacity: 0.7;
}