body {
    margin: 0;
    font-family: "Outfit", serif;
    background-color: #000;
    color: #fff;
    overflow: auto;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: none;
    color: white;
    position: fixed;
    width: 99%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.buttons {
    display: flex;
    gap: 10px;
}

.transparent-button {
    background: none;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    font-family: "Outfit", serif;
    font-size: 16px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 20px;
}

.container {
    perspective: 1000px;
    margin: 20px 0;
}

.info-box {
    width: 600px;
    padding: 20px;
    background: none;
    border: none;
    transform: rotateX(30deg) rotateY(0deg);
    transition: transform 0.5s ease;
    text-align: justify;
}

.info-box:hover {
    transform: rotateX(0deg) rotateY(0deg);
}

.info-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.star {
    position: absolute;
    background-color: #8f8f8f;
    border-radius: 50%;
    opacity: 0.7;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
