@import url("https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap");

:root {
  --prim-color: #0178ff;
  --sec-color: #128cae;
  --third-color: #03074d;
  --forth-color: #385361;
  --border-color: #0199ff;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Comic Relief", system-ui; */
   font-family: "Comic Relief", system-ui;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: var(--third-color);
  display: inline-block;
}
img {
  display: block;
}

body,
html {
  height: 100%;
  width: 100%;
}
.title {
  width: min(900px,100%);
}

.wrapper {
  min-height: 100%;
  width: 100%;
  background: var(--prim-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}
.landing_page {
  height: 100vh;
  width: 100%;
  background: linear-gradient(to top, #112342, #1453933a),
    url(./assets/bg.png);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
  gap: 2rem;
  
  position: relative;
}

.landing_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: min(600px, 100%);
  gap: 1rem;
  z-index: 1;
  margin-top: 5rem;
}
.logo {
  width: 100%;
  animation: hue 1s infinite alternate-reverse;
}
.orca_text_wrapper {
  
  min-height: 800px;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 4rem 3rem;
}
.orca_text_wrapper {
  background: var(--sec-color) url(./assets/ice.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.orca_text_wrapper_header {
  text-align: center;
  font-size: clamp(35px, 3rem, 4vw);
  white-space: nowrap;
}
.orca_description {
  font-size: clamp(20px, 2rem, 3vw);
  font-weight: 900;
}
.description_title {
  font-weight: bold;
  color: var(--border-color);
}
.chart_wrapper {
  width: 100%;
  height: calc(100vh / 2);
}
.orca_images_cover{
  width: 100%;
}
.orca_images_wrapepr {
  background-color: var(--sec-color);
  width: 100%;
  display: flex;
}
.orca_img {
  object-fit: cover;
  max-width: calc(100% / 4);
  flex: 1 1 calc(100% / 4);
}
.dexscreener {
  width: 100%;
  height: 100%;
  border: 0;
}
.homepage_socials {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding: 2rem 1rem;
}

.homepage_social_link {
  padding: 0.5rem;
  flex: 0 1 min(80px, 80%);
  aspect-ratio: 1/1;
  border-radius: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homepage_social_link_img {
  width: 100%;
  transform: skewX(-5deg);
  animation: icon 1s infinite ease-in-out alternate-reverse;
}
.homepage_social_link {
  width: 100%;
}
.buttons_wrapper {
  margin-bottom: 3rem;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  
}
.buttons_wrapper > * {
  background: linear-gradient(to top,#000,#343434);
  padding: 0.2rem 2rem;
  max-width: max-content;
  text-align: center;
  font-size: clamp(20px, 1.5rem, 2vw);
  color: #fff;
  border-radius: 15px;
  border-bottom: 3px solid #e2e2e2;
  cursor: pointer;
}
.copy_btn{
  border: 0;
  border-bottom: 3px solid #e2e2e2;
}
.homepage_ca {
  z-index: -2;
  position: absolute;
  top: -50%;
}
@media only screen and (max-width: 600px) {
  .homepage_socials {
    display: grid;
    grid-template-columns: repeat(2, calc(50% / 2));
    justify-items: center;
    align-items: center;
    gap: 2rem;
  }
  .homepage_social_link_img {
  width: 100%;
 
}
}
@keyframes hue {
  100% {
    transform: scale(0.95);
  }
}
@keyframes letters {
  100% {
    letter-spacing: 0.8rem;
  }
}
@keyframes icon {
  100% {
    transform: skewX(10deg);
  }
}
