:root {
  --main-color: #0070ba;
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 20%), 0 0 10px 1px rgb(255 255 255 / 20%);
}
.menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 1.2rem;
  padding: 1.2rem 1.8rem;
  border-radius: 2.5rem;
  cursor: pointer;
}
.hero {
  background-image: radial-gradient(circle at 0 0, #0070ba, #1546a0);
  color: #fff;
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.hero-title {
  font-size: 3rem;
  font-weight: bold;
}
.hero-sub {
  font-size: 2.4rem;
  font-weight: 500;
}

.hero-link a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  margin-right: 2rem;
}

.ins h2 {
  font-weight: 400;
  font-size: 2.8rem;
  color: #000000;
}
.ins p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;

  color: #2c2e2f;
  padding-right: 0.4rem;
}

.code {
  background-color: #000000;
  text-align: center;
  color: #fff;
  padding: 1rem 2rem;
}
.call {
  text-decoration: none;
  font-size: 2.4rem;
}
@media only screen and (min-width: 1024px) {
  .hero {
    flex-direction: row;
    height: 20vh;
  }
  .code {
    border-radius: 20px;
  }
}
