body {
  height: 100vh;
  background: linear-gradient(to bottom, #99ABFD, #E4E4E4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.container {
  aspect-ratio: 1.187;
  display: flex;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;

  background: #D7DCFA;
  box-shadow: 0px 5px 4.2px 4px rgba(38, 42, 66, 0.25);
}
.inner-container{
  width: 100%;
  margin: 4.4% 2.5% 1.6% 3%;
  display: flex;
}
.oc-image{
  position: relative;
  height: 100%;
  width: 57%;
  background-image: url("img/bg.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.oc-image::after{
  content: "";
  position: absolute;
  width: 105%;
  height: 108%;
  bottom: 5%;
  right: 16%;

  background-image: url("img/bg_OC.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.link-list{
  height: 100%;
  width: 50%;
  position: relative;
  text-align: center;
}

.list-footer{
  position: absolute;
  width: 100%;
  height: 15%;
  left:0;
  bottom: 0;
  display: flex;
  gap: 1vw;
}

.footer-image {
  width:25%;
}
.footer-image:nth-child(even) {
  background-image: url("img/ufo.gif");
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-image:nth-child(odd) {
  background-image: url("img/planet.gif");
  background-repeat: no-repeat;
  background-size: contain;
}

.link{
  font-size: min(4vw, 20px);
  /* commissions */
  
  font-family: 'Sarpanch';
  font-style: normal;
  font-weight: 400;
  
  color: #5772DF;
}

.link:hover{
  color: #8A38F5;
}
.link-list>ul{
list-style-type: none;
margin: 0;
  padding: 0;
}

.bg-animations{
  position: fixed;
  width: 100%;
  height: 100%
}

.bg-animation{
  position: absolute;
  top: 0;
  left:0;
  height: 25%;
  width: 25%;
  background-image: url("img/star.gif");
  background-repeat: no-repeat;
  background-size: contain;
}

.bg-animation-two{
  position: absolute;
  bottom: 0;
  right: 0;
  height: 25%;
  width: 25%;
  background-image: url("img/star.gif");
  background-repeat: no-repeat;
  background-size: contain;
}
