@font-face {
  font-family: "Inter-Bold";
  src: url("fonts/Inter-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Inter-Regular";
  src: url("fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: url("background/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 600px) {
  body {
    background-image: url("background/bg_mobile.png");
  }
}

.container {
  position: relative;
}

.top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  letter-spacing: 5px;
  font-family: "Inter-Bold", sans-serif;
  font-size: 24px;
  color: white;
}

.bottom-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  color: white;
  font-family: "Inter-Regular", sans-serif;
}

/* Vorheriger CSS Code bleibt unverändert */

.instagram-logo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 30px; /* Ändere die Breite und Höhe nach Bedarf */
  height: 30px;
  padding: 5px;
  border-radius: 10px;
}

.instagram-logo:hover {
  background-color: rgba(255, 255, 255, 0.10);
}
