@font-face {
  font-family: sofiasans;
  src: url("/fonts/SofiaSans-VariableFont_wght.ttf");
}

:root {
  --background-color: #DCDCDC;
  --main-text-color: #1E1E1E;
  --header-color: #D1D1D1;
  --secondary-color: #C23F3F;
}

body {
  background-color: var(--background-color);
  margin: 0;
  color: var(--main-text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: sofiasans;
}

a {
  text-decoration: none;
  color: var(--main-text-color);
}

header {
  background-color: var(--header-color);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.logo {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 1000;
  margin: 16px 0;
  font-size: 38px;
  cursor: pointer;
  text-align: center;
}

.logo>span:nth-child(1) {
  color: var(--secondary-color);
}

footer {
  background-color: var(--secondary-color);
  /*height: 32px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

footer>p {
  margin: 0;
  padding: 5px;
}

footer>p>a {
  margin: 0;
  text-align: center;
  color: var(--background-color);
}

/*BANNER*/
.mainbanner {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.mainbanner>img {
  max-width: 500px;
  width: 90%;
  box-shadow: 4px 4px 5px #00000060;
  cursor: pointer;
}

.subheader {
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 12px -5px rgba(0, 0, 0, 0.25);
}

.subheader>a {
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 650px) {
  .phoneelement {
    display: none;
  }
}

@media only screen and (max-width: 650px) {
  .desktopelement {
    display: none;
  }
}
