@font-face {
  font-family: 'Cabin Condensed bold';
  src: url('../assets/fonts/CabinCondensed-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
  font-family: 'Cabin Condensed medium';
  src: url('../assets/CabinCondensed-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
  font-family: 'Cabin Condensed semibold';
  src: url('../assets/CabinCondensed-SemiBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
  font-family: 'Cabin Condensed regular';
  src: url('../assets/CabinCondensed-Regular.ttf') format('truetype');
    font-display: swap;
}

.cabin-condensed-regular {
  font-family: "Cabin Condensed", serif;
  font-weight: 400;
  font-style: normal;
}

.cabin-condensed-medium {
  font-family: "Cabin Condensed", serif;
  font-weight: 500;
  font-style: medium;
}

.cabin-condensed-semibold {
  font-family: "Cabin Condensed", serif;
  font-weight: 600;
  font-style: semibold;
}

.cabin-condensed-bold {
  font-family: "Cabin Condensed", serif;
  font-weight: 700;
  font-style: bold;
}

body{
  color: white;
  font-family: "Cabin Condensed", serif;
  font-weight: 400;
  font-style: normal;
}

#main{
    background-color: rgba(102, 114, 169, 0.3);
    height: 1080px;
}

.bg-image{
  z-index: -1;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: inherit;
  filter: blur(8px);
-webkit-filter: blur(8px);
}

.top-bar {
  height: 80px;
  width: 100%;
  background-color: #6672a9;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo{
  height: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pattern{
  position: relative;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
}

.square-1, .square-2, .square-3 {
  position: absolute;
  height: 50px;
  width: 50px;
  rotate: 45deg;
  background-color: white;
}

.square-1 {
  background-color: #ee7d0c;
}

.square-2 {
  background-color: white;
  margin-top: 40px;
  margin-left: 80px;
}

.square-3 {
  background-color: white;
  margin-top: 40px;
  margin-right: 80px;
}

/* Grundstil für alle Quadrate */
.square {
  width: 100px;
  height: 100px;
  display: inline-block;
  transition: background-color 1s ease;
}

/* Quadrat 1 beginnt mit orange */
.square-1 {
  background-color: #ee7d0c;
}

/* Quadrat 2 und Quadrat 3 beginnen mit weiß */
.square-2, .square-3 {
  background-color: white;
}

/* Animation, die die Farben der Quadrate ändert */
@keyframes colorCycle {
  0% {
    background-color: white;
  }
  20% {
    background-color: #ee7d0c;
  }
  40% {
    background-color: #ee7d0c;
  }
  60% {
    background-color: #ee7d0c;
  }
  60% {
    background-color: white;
  }
  100% {
    background-color: white;
  }
}

/* Anwenden der Animation auf die einzelnen Quadrate */
.square-1 {
  animation: colorCycle 6s infinite;
}

.square-2 {
  animation: colorCycle 6s infinite 2s; /* Verzögerung für Quadrat 2 */
}

.square-3 {
  animation: colorCycle 6s infinite 4s; /* Verzögerung für Quadrat 3 */
}


.headline{
  padding-top: 100px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.adressen{
  display: relative;
  padding-top: 100px;
  width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.pointer {
  text-align: center;
  margin-right: 20%;
}

.container{
  display: grid;
  grid-template-columns: 45% 2% 50%;
  grid-gap: 5%;
}

.luxemburg {
  margin-left: auto;
}

.divider{
  background-color: #ee7d0c;
  height: 80%;
  margin: 20%;
  position: relative;
  top: 10%;
}

@media only screen and (max-width: 600px) {
  .top-bar {
    height: 50px;
  }

  .pattern{
    padding-top: 50px;
    padding-bottom: 60px;
  }

  h1{
    font-size: 1.4rem;
  }

  .bg-image{
    z-index: -1;
    position: absolute;
    height: 100%;
    filter: blur(8px);
  -webkit-filter: blur(8px);
  }

  .adressen{
    display: relative;
    padding-top: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .headline{
    padding-top: 60px;
  }

  .pointer {
    margin: 0;
  }

  .pointer p {
    font-size: 1rem;
    margin: 0;
  }

  .divider-container{
    height: 10px;
  }

  .luxemburg, .deutschland{
    margin: auto;
    width: 60%;
  }

  .divider{
    margin: 0;
    height: 7px;
    width: 60%;
    margin-left: 20%;
    margin-right: auto;
  }

  .container{
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 0%;
  }
}
