.footer{
   padding: 10px;
   padding-top: 100px;
   padding-bottom: 50px;
   display: flex;
   flex-wrap: wrap;
   gap: 50px;
}

.footer-item{
   flex: 1 1 400px
}

.footer-title{
   font-family: "Press Start 2P";
   font-size: 20px;
}

.footer-description{
   font-family: "Montserrat";
   font-size: 16px;
   margin-top: 10px;
   color: #dbdbdb
}

.footer-links{
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.footer-list {
   list-style: none;
}
.footer-list-item{
   margin-top: 15px;
}
.footer-link {
   margin-top: 5px;
   color: #fff;
   font-family: "Montserrat";
   font-size: 18px;
   text-decoration: none;
   transition: 0.5s;
}
.footer-link:hover{
   background: #fff;
   color: #000
}

.footer-totop{
   align-self: flex-end;
}


.footer-school {
   animation: blink 2s infinite;
}
.footer-title {
}
.footer-schoollink {
   font-family: "Montserrat";
   text-decoration: none;
   color: #8861c9;
   margin-top: 10px;
   display: inline-block;
}



@keyframes blink{
   0%{
      opacity: 1;
   }
   50%{
      opacity: 0.8;
   }
   100%{
      opacity: 1;
   }
}