:root {
  --text: #0A0A0A;
  --background: #fff;
  --left: #ffb90c;
  --middle: #fabbcd;
  --right: #458ff8;
  --grey: #4b4b4b;
  --light: #afafaf;
  --gradient: linear-gradient(90deg, rgba(255, 185, 12, 1) 0%, rgba(251, 188, 205, 1) 47%, rgba(69, 143, 248, 1) 100%);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  background-color: var(--background);
  text-align: center;
}

hr {
  width: 60vw;
  height: 1px;
  background-color: var(--grey);
}

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

.row {
  flex-direction: row;
}
.column {
  flex-direction: column;
}

.hero {
  height: 100vh;
  transform: translateY(-10vh);
  z-index: -1;
}

.list {
  letter-spacing: 0.5rem;
  height: 10vh;
}
.black {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: initial;
  color: var(--text);
}
.text-gradient {
  font-size: 10vw;
  font-weight: bolder;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about {
  font-size: 2rem;
  padding: 2.5vw;
}

@media screen and (min-width: 700px) {
    footer {
        font-size: 4vw;
        text-align: center;
        margin:0;
        padding: 0;
    }
}
@media screen and (max-width: 700px) {
    footer {
        font-size: 5.5vw;
        text-align: center;
    }
}

.copyright {
  color: var(--right);
  font-size: 1rem;
  margin-bottom: 5vh;
}

.container {
  padding: 0 10vw 0 10vw;
  gap: 5vw;
  flex-direction: row;
}
@media screen and (max-width: 700px) {
  .container {
    flex-direction: column;
  }
  .box h1 {
    font-size: 6vw !important;
  }
  .box h2 {
    font-size: 4vw !important;
  }
}
@media screen and (max-width: 530px) {
  .box {
    padding: 1rem !important;
  }
  .box h1 {
    font-size: 8vw !important;
  }
  .box h2 {
    font-size: 6vw !important;
  }
}
.box {
  width: 100%;
  height: 30vh;
  border-radius: 1.5rem;
  padding: 3rem;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
}
.box h1 {
  align-self: flex-start;
  margin-top: 0;
  height: 5vh;
  font-size: 4vw;
}
.box h2 {
  align-self: flex-start;
  margin-top: 0;
  height: 100%;
  font-size: 2vw;
}
.box p {
  align-self: flex-start;
  margin-bottom: 0;
  font-weight: bold;
}
.box a {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  font-size: 3rem;
  font-weight: bolder;
  transform: translateY(15vh);
}
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
.box:hover::before {
  background: rgba(0, 0, 0, 0.5);
}
.box:hover a {
  opacity: 1;
  transform: translateY(0);
}
#stibot {
  background-image: url('https://cdn.onway.space/Stibot.png');
  background-size: cover;
  background-position: center;
}
#anoeye {
  background-image: url('https://cdn.onway.space/anobanner.png');
  background-size: cover;
  background-position: center;
}
#pato {
  background-image: url('https://cdn.onway.space/pato.png');
  background-size: cover;
  background-position: center;
}


/*Links*/

/*Button 2*/
.link {
	color: var(--background);
	-webkit-text-stroke: 1px var(--background);
	text-decoration: none;
	position: relative;
}
.link::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--background);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.link:hover::before {
	transform: scaleX(1);
}
.link-button {
  color: var(--text);
  text-decoration: none;
  border: var(--text) 2px solid;
  border-radius: 150px;
  background: #fff;
  font-size: 1rem;
  padding: 1rem;
  transition: ease .5s;
  width: 10vw;
  font-weight: bold;
}
.link-button:hover {
  background: var(--gradient);
  border-color: white;
  transition: ease .5s;
}

/*Clean White button*/
.cleanButton {
    text-decoration: none;
    color: #000;
    background: #fff;
    padding: 1vw 2vw 1vw 2vw;
    border-radius: 10px;
    transition: all ease-in-out 0.3s;
    z-index: 100;
}
.cleanButton:hover {
    background: var(--gradient);
    color: #fff;
    transition: all ease-in-out 0.3s;
}
