@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: poppins;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body * {
  animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.menu {
  background-color: #060064;
  color: white;
  padding: 10px;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 25px;
  z-index: 1000;
}
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.menu li {
  float: left;
}
.menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.menu li a {
  background-color: #060064;
  padding: 10px 16px;
  border-radius: 5px;
}
.menu li a:hover {
  background-color: #0056b3;
  transition: all 0.3s ease-in-out;
}

header {
  background-image: url("../assets/header.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 430.5px;
  position: relative;
  padding-top: 144px;
}

.static-card {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer {
  padding: 33.5px;
  margin-top: 3rem;
  position: relative;
  background-color: #060064;
  color: white;
  text-align: center;
  font-size: 18px;
}