@import url('https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap');

:root {

  --back-header: #181621;
  --primary-color: #00B2FF;
  --text-white: #ffffff;
  --back-button: #000000;

  --primary-font: 'Inika', sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: var(--primary-font);
  color: var(--text-white);
}

body {
  display: flex;
  flex-direction: column;


}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#home {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 122px;

  background: no-repeat url(/assets/img/background-inscription.png);
  background-size: cover;
  background-position: bottom;
}

#home .image {
  position: relative;
  margin-bottom: 15px;
}

#home .border-img {
  position: absolute;
  top: -20px;
  left: -11px;
  height: 394px;
  width: 252px;
}

#home .border-img .top {
  height: 270px;
  width: 252px;
  border: 3px var(--primary-color) solid;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom: none;
}

#home .border-img .bot {
  height: 125px;
  width: 252px;
  border: 3px var(--primary-color) solid;
  border-top: none;
}

#home .text-box {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#home .text-box .text h1 {
  color: var(--primary-color);
  font-size: 48px;
}

#home .text-box .text #subtitle {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 70px;
}

#home .text-box p {
  margin-bottom: 82px;
  font-size: 20px;
  max-width: 551px;
}

#home .text-box .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

#home .text-box a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 14px;
  background-color: var(--back-button);
  padding: 17px 30px;
  border: 2px solid var(--primary-color);
  transition: 0.3s all;
}


#home .text-box a:last-child {
  padding: 17px 67px;
}


#home .text-box a:hover {
  color: var(--back-button);
  font-weight: 700;
  background-color: var(--primary-color);
  cursor: not-allowed;
}


.img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.img-box h3 {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--primary-font);
  color: var(--text-white);
  margin-top: 20px;
}