* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

.montserrat-300 {
  font-weight: 300;
}

.montserrat-400 {
  font-weight: 400;
}

.montserrat-500 {
  font-weight: 500;
}

.montserrat-700 {
  font-weight: 700;
}

.montserrat-900 {
  font-weight: 900;
}

.full-screen-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.coming-soon {
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.05);
    animation: fadeIn 2s ease-in-out;
}

.coming-soon h1 {
    font-size: 4em;
    letter-spacing: 0.1em;
}

.coming-soon p {
    font-size: 1.5em;
    color: #ccc;
}

@keyframes fadeIn {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}
