:root {
  --first: #e00000;
  --second: #ed860c;
  --third: #0f9480;
  --almost-white: #f3f4f6;
  --white: #ffffff;
  --black: #000000;

  --separation: 5rem;

  --principal-font: "Helvetica", sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: var(--principal-font);
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 900;
  margin: calc(var(--separation) / 2) 0;
}

h2 {
  font-size: 3.6rem;
}

a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.content_container {
  margin: 0 auto;
  width: 90%;
  background-color: var(--white);
  border-radius: 0.2rem;
  box-shadow: 0px 0px 15px 3px rgb(0 0 0 / 0.15);
  padding: 5rem;
}

.content_heading {
  text-align: center;
  margin-bottom: 5rem;
  text-transform: uppercase;
  color: var(--first);
  font-size: 3rem;
  line-height: 2;
  font-weight: 900;
}

@media (min-width: 992px) {
  .content_heading {
    text-align: left;
    margin-top: 10rem;
  }
}

.content_heading span {
  color: var(--second);
  font-weight: 700;
  margin-bottom: -5px;
}

.content {
  background-image: url(../images/background.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .content_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.content_logo {
  width: 25rem;
  margin: 0 auto 3rem auto;
}
.content_grid {
  display: grid;
}

.content_graphic {
  order: -1;
  margin: 2rem auto;
}

@media (min-width: 992px) {
  .content_logo {
    margin: 0;
  }
  .content_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
  }
  .content_graphic {
    order: 0;
  }
  .content_image {
    min-width: 40rem;
    margin: 0 auto;
  }
}

.content_button {
  background-color: var(--second);
  display: block;
  padding: 1rem;
  text-align: center;
  color: var(--white);
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-radius: 0.3rem;
  transition: background-color 0.3s ease;
}

.content_button:hover {
  cursor: pointer;
  background-color: var(--first);
  font-weight: 700;
}

@media (min-width: 992px) {
  .content_button {
    padding: 1rem 3rem;
    display: inline-block;
  }
}

.navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 992px) {
  .navigation {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.navigation_link {
  color: var(--third);
  padding: 1rem;
  transition-property: transform;
  transition-duration: 300ms;
}

.navigation_link:hover {
  transform: scale(1.2);
  color: var(--second);
  font-weight: 700;
}

.social_img {
  display: inline-block;
  margin: 1rem;
}

.social_img img {
  max-width: 2.5rem;
  transition-property: transform;
  transition-duration: 300ms;
}

.social_img img:hover {
  transform: rotate(4deg) scale(1.2);
  color: var(--second);
}

.content_text {
  text-align: center;
}

@media (min-width: 992px) {
  .content_text {
    text-align: justify;
  }
}

.prevent_select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
