* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgba(33, 54, 104, 0.94);
}

a {
  text-decoration: none;
}

a:hover {
  cursor: context-menu;
}

#headerContainer {
  width: 100%;
  background-color: white;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  width: 85%;
  max-width: 1450px;
  margin: auto;
}

#logo {
  width: 40%;
  max-width: 330px;
}

#title {
  font-family: "Rajdhani", sans-serif;
  color: #213668;
  font-size: 3em;
  text-align: center;
}

img {
  width: 100%;
}

#container {
  width: 85%;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.shortcut {
  position: relative;
  width: 400px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  margin-top: 70px;
  box-shadow: 5px 10px 14px 0px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #0a1738;
  transition: 0.3s linear;
}

.shortcut:hover {
  cursor: pointer;
}

.moduleLogo {
  width: 100px;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a1738;
  border-bottom-left-radius: 19px;
  border-top-left-radius: 19px;
}

.moduleLogo span {
  font-size: 50px;
  color: white;
}

.moduleName {
  width: 233px;
  font-size: 25px;
  margin-left: 10px;
  font-family: "Lexend Deca", sans-serif;
  z-index: 10;
  transition: 0.6s ease-in-out;
}

.arrow {
  padding: 5px 2px 0 10px;
  width: 45px;
  transition: 0.5s linear;
  z-index: 10;
}

.arrow path {
  transition: 0.4s ease-in-out;
}

.shortcut:hover .arrow {
  animation: arrowAnimation 1s linear infinite alternate;
}

.overlay {
  position: absolute;
  top: 0;
  left: 100px;
  width: 0px;
  height: 100%;
  transition: 0.5s ease-in-out;
  background-color: #0a1738;
}

.shortcut:hover .overlay {
  width: 300px;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
}

.shortcut:hover .moduleName {
  color: white;
}

.shortcut:hover svg path {
  fill: white;
}

@keyframes arrowAnimation {
  0% {
    padding-left: 10px;
  }
  50% {
    padding-left: 0px;
  }
  100% {
    padding-left: 10px;
  }
}
