* {
  box-sizing: border-box;
}
body {
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin:0%;
}

h1 {
  font-family: 'helvetica', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
p {
  font-family: 'helvetica', sans-serif;
  letter-spacing: 1px;
  font-size:14px;
}
.container {
  align-items: center;
  display: flex;
  height: fit-content;
}
.content {
  flex-grow: 1;
  gap: 24px;
  margin: 0 auto;
  max-width: 90vw;
  padding: 140px 0;
  width: 1400px;
}
.content a {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #eaeaea;
  border-bottom-width: 4px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  padding: 40px 35px;
  transition: all ease 0.55s;
  width: 20%;
}
.content a:hover {
  border-bottom-color: #e5097f;
}
.header { 
  position:relative;
  text-align:center;
  background: rgba(255,255,255,1);
  color:white;
}
.logo {
  height: 40%;
  max-height: 40% !important;
  max-width: 220px;
  object-fit: contain;
  width: 100%;
}
.inner-header {
  background: #cacaca;
  height: 205px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.inner-header .logo {
  height: auto;
  max-width: 270px;
}

.flex { 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-inner {
  color: #fff;
  position:relative;
  height:20vh;
  text-align:center;
  background-color: #000;
}

/*opt screens for mobile*/
@media (max-width: 1800px) {
  .container {
    min-height: 60vh;
  }
}
@media (max-width: 991px) {
  .content a {
    padding: 20px;
    width: calc(25% - 15px);
  }
  .flex {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .content {
    flex-wrap: wrap;
    max-width: 85%;
  }
  .content a {
    aspect-ratio: 4 / 3;
    width: calc(50% - 10px);
  }
  .flex {
    gap: 20px;
  }
  .inner-header .logo {
    max-width: 250px;
  }
  .logo {
    max-width: 200px;
    max-height: 60% !important;
  }
}
@media(min-width: 601px) and (max-width: 768px) {
  .container {
    min-height: auto;
  }
}
@media (max-width: 390px) {
  .container {
    min-height: auto;
  }
  .content {
    width: 80%;
  }
  .content a {
    aspect-ratio: 3 / 2;
    width: 100%;
  }
  .logo {
    max-width: 180px;
  }
}