@font-face {
  font-family: 'Oswald';
  src: url('/fonts/oswald/Oswald-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal; /* Geändert von 'bold' zu 'normal' */
}

@font-face {
  font-family: 'Oswald'; /* Geändert zu einheitlichem Familiennamen */
  src: url('/fonts/oswald/Oswald-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  width: 100vw;
  text-align: center;
  padding-bottom: 25px;
  background-image: url('../img/swt-logo-FINAL.png');
  background-repeat: no-repeat;
  background-position: center center;
}

.logo img {
  width: auto;
  height: auto;
}

.icon-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: clamp(20px, 2.5vw + 1rem, 50px);
  color: #a91916;
}

.heading {
  margin-bottom: 10%;
}

.contact-container .heading h1 {
  font-size: clamp(20px, 2.5vw + 1rem, 50px);
}

.text {
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-style: normal;
}
.text a {
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-weight: bold;
}

/* Sehr kleine Geräte (Handys, 600px und darunter) */
@media only screen and (max-width: 600px) {
  .container {
    background-image: url('../img/swt.logo-final150ppi.png');
    height: 90vh !important;
  }

  .text {
    font-size: 18px;
  }

  .text a {
    font-size: 20px;
  }
}

/* Porträt-Tablets, große Handys (600px – 900px) */
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .container {
    background-image: url('../img/swt.logo-final150ppi.png');
    height: 90vh !important;
  }
}

/* Laptops, Desktops (900px und darüber) */
@media only screen and (min-width: 901px) {
  .container {
    background-image: url('../img/swt.logo-final150ppi.png');

  }
}

/* Große Desktops (1200px und darüber) */
@media only screen and (min-width: 1200px) {
  /* Stile hier einfügen */
}