@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap");
:root {
  --inna-yellow: #ffd200;
  --inna-black: #010409;
  --inna-white: #ffffff;
  --inna-primary: #0f1237;
  --inna-grey: #161b22;
  --inna-success: #15be56;
  --inna-danger: #f9322c;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
}

body {
 background-color: var(--inna-grey);
}

.main-menu {
  flex-shrink: 0;
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
  overflow: hidden;
}

.logo {
  font-size: 24px;
  color: var(--inna-white);
}

/* Style the links inside the navigation bar */
.main-menu a {
  float: left;
  color: var(--inna-white);
  text-align: center;
  padding: 5px 15px;
  text-decoration: none;
  font-size: 17px;
  transition: background-color 0.15s, color 0.15s;
  border-radius: 20px;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
}

/* Change the color of links on hover */
.main-menu a:hover {
  background-color: var(--inna-yellow);
  color: #0f1237;
  border-radius: 20px;
}

/* Add a color to the active/current link */
/* .main-menu a.active {
    background-color: #04AA6D;
    color: white;
  } */

.hero-title {
  color: var(--inna-white);
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

section .i,
.a,
.k {
  color: var(--inna-danger);
}

section .n,
.e {
  color: var(--inna-yellow);
}

section .f,
.o {
  color: var(--inna-success);
}

.hero-box {
  width: 975.62px;
  height: 385;
  text-align: center;
  flex-shrink: 0;
  margin-top: 190px;
  margin-left: 233px;
  margin-right: 233px;
}

.hero-subtitle {
  color: var(--inna-white);
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-top: 15px;
}

.version-text {
  color: var(--inna-danger);
}

.hero-btn {
  /* width: 180px;
  height: 57px; */
  border-radius: 40px;
  border: none;
  display: inline-flex;
  padding: 10px 20px 10px 20px;
  align-items: center;
  background-color: var(--inna-yellow);
  transition: box-shadow 0.8s;
  color: var(--inna-primary);
  margin-top: 15px;
}

.hero-btn:hover {
  box-shadow: 0px 0px 25px 0px var(--inna-yellow);
}

.icon-coffee-left {
  color: var(--inna-yellow);
  width: 80px;
  height: 100px;
  transform: rotate(-44.269deg);
  flex-shrink: 0;
}

.icon-coffee-right {
  color: var(--inna-yellow);
  width: 90px;
  height: 80px;
  transform: rotate(44.269deg);
  flex-shrink: 0;
}

.heart {
  /* font-size: 150px; */
  /* color: #e00; */
  animation: beat 3s infinite alternate;
  transform-origin: center;
}

/* Heart beat animation */
@keyframes beat {
  to {
    transform: scale(0.7);
  }
}

.icon-arrow {
  color: var(--inna-white);
  flex-shrink: 0;
  margin-left: 250px;
  margin-top: -200px;
}

.how-txt {
  color: var(--inna-white);
  position: absolute;
  top: 505px;
  left: 855px;
  transform: rotate(32.534deg);
}

.footer {
  text-align: center;
  color: var(--inna-white);
}

.socials{
  align-items: center;
  gap: 20px;
}
