* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFFFFF;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

main {
  text-align: center;
  max-width: 600px;
  width: 70%;
  padding: 20px;
}

.logo {
  margin-bottom: 50px;
}

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

/* Fonts */
.tagesschrift-regular {
  font-family: "Tagesschrift", system-ui;
  font-weight: 300;
}

.prata-regular {
  font-family: "Prata", serif;
  font-weight: 400;
}

.center h1 {
  font-size: 1.8rem;
  margin: 10px 0;
  letter-spacing: 1px;
}

.bold .bold_a,
.center h1 a {
  font-weight: 900;
  color: #000000;
  font-family: 'Comic Neue';
  text-decoration: none;
}

.center h1 a:hover {
  color: #2D79C5;
  transform: scale(1.05);
  transition: 0.3s;
}

.model {
  background-color: #00000000;
  color: #000000;
  height: 400px;
  margin-bottom: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.carousel-container {
  width: 90%;
  max-width: 800px;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-track img {
  width: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  height: 100%;
  border-radius: 20px;
}

.buttons {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 1rem; 
  margin-top: 2rem; 
}

.button_insta,
.button_tiktok {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2D79C5;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px #DADADA;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition: 0.3s;
}

.svgIcon path {
  fill: #000000;
}

.button_insta:hover,
.button_tiktok:hover {
  width: 140px;
  border-radius: 50px;
  background-color: #1F5DA2;
}

.button_insta:hover .svgIcon,
.button_tiktok:hover .svgIcon {
  width: 50px;
  transform: translateY(85%);
}

.button_insta::before,
.button_tiktok::before {
  position: absolute;
  top: -20px;
  color: white;
  font-family: 'Comic Neue';
  font-size: 2px;
  transition: 0.3s;
}

.button_insta::before {
  content: "Instagram";
}

.button_tiktok::before {
  content: "TikTok";
}

.button_insta:hover::before,
.button_tiktok:hover::before {
  font-size: 13px;
  transform: translateY(30px);
  opacity: 1;
}
