@font-face {
  font-family: 'Codec Pro News';
  src: url('../assets/codec-pro-news.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Codec Pro News', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 60px;
  height: auto;
  display: block;
}

.coming-soon-text {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #000;
}

.instagram-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: inline-block;
}

.instagram-icon img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.instagram-icon:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
