:root {
  --page_width_usage_full: 60%;
  --page_width_usage_mid: 80%;
  --page_width_usage_small: 96%;

  --main_color: rgb(40 147 135 /1);
  --main_color_highlight: rgb(17 94 87 /1);
  --main_font_color: rgb(255 255 255 /1);

  --border_radius: 0.75rem;
  --border_radius_cell: 0.5rem;

  --footer_font_color: rgb(8 27 59 /1);
  --footer_font_color_hover: rgb(17 94 87 /1);
}

html {
  scroll-behavior: smooth;
}

body {
  width: var(--page_width_usage_full);
  margin: auto;
  color: var(--main_font_color);
  font-family: "Special Elite", system-ui;
  background-image: url(/img/background_image.jpg);
  background-attachment: fixed;
}



.logo_header_image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 3.5em;
  text-transform:capitalize ;
}

h2 {
  font-size: 4em;
}

h3 {
  font-size: 1.5em;
}

footer {
  margin-top: 2rem;
  color: var(--footer_font_color);
  background-color: var(--main_color);
  border-radius: var(--border_radius);
}

.footer_text {
  font-size: 1.1rem;
  margin-top: 0.7rem;
  padding-top: 1.5rem;
  padding-left: 2rem;

  word-break: break-word;
}

.copyright_text {
  padding-right: 40px;
  padding-bottom: 10px;
  text-align: right;
  font-size: 0.9rem;
}

footer a {
  color: inherit;
  text-decoration: none;
}

header a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  color: var(--footer_font_color_hover);
}

.social_links {
  font-size: 1rem;
  display: inline-block;
}

.top_button {
  border:#081b3b solid 1px;
  background-color:#081b3b;
  color: #4ab4a7;
  display:inline-block;
  padding:8px 16px;
  vertical-align:middle;
  overflow:hidden;
  text-decoration:none;
  text-align:center;
  cursor:pointer;
  white-space:nowrap;
}

.top_button:hover {
  background-color: #289387;
  color: #081b3b;
}

/* media for different sized screens and devices */
@media screen and (max-width: 1350px) {
  body {
    width: var(--page_width_usage_mid);
  }
}

@media screen and (max-width: 750px) {
  body {
    width: var(--page_width_usage_small);
  }

  main {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* p {
    max-width: 90%;
  } */
}