body {
  margin: 0;
  background-color: rgb(60, 49, 102);
  font-family: sans-serif;
}
header {
  text-align: center;
}
a {
  color: rgb(21, 255, 0);
  transition: 1s ease;
  text-decoration: none;
}
a:hover {
  color: rgb(203, 255, 255);
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.products{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #666666;
    width: fit-content;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    margin-top: 1.5%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 1.5%;
   text-align: center;
    min-height: 100vh;
    background: linear-gradient(
            -45deg,
            #4facfe,
            #00f2fe,
            #43e97b,
            #38f9d7,
            #667eea
   );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}
nav{
    text-align: center;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}
hr{
    color: aqua;
}

img{transition: 1s ease;
filter: drop-shadow(0 3px 10px white);
}
img:hover{transform: scale(1.05);
filter: brightness(1.2);
filter: drop-shadow(0 0 5px white);
}
.imgbackuper{animation: spin 1s linear infinite;}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
