body {
    font-family: 'Space Mono', monospace;
    margin: 0;
    background: linear-gradient(to bottom, rgb(25, 25, 58), rgb(42, 25, 98));
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 600px;
    z-index: 1;
}

/* Styles for the profile section */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px; /* Spacing between profile and buttons */
}

.profile img {
    width: 100px; /* Adjust size as needed */
    height: 100px;
    border-radius: 50%; /* Make it a circle */
    margin-bottom: 10px; /* Spacing between image and text */
}

.profile h1 {
    font-size: 1.5em; /* Adjust size as needed */
    color: white;
    margin-bottom: 5px; /* Spacing between heading and paragraph */
}

.profile p {
    font-size: 1em; /* Adjust size as needed */
    color: white;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(24, 24, 60, 0.7);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid white;
}

.button:hover {
    background-color: rgba(24, 24, 60, 0.9);
    border-color: rgba(255, 255, 255, 0.7);
}

.button img {
    height: 24px;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .container {
        width: 60%;
        max-width: 600px;
    }
}

.circle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: rise 5s linear infinite;
}

@keyframes rise {
    0% {
        top: var(--start-top);
        left: var(--start-left);
        transform: translateY(0);
        opacity: 0;
    }
    100% {
        top: -10px;
        left: var(--start-left);
        transform: translateY(-100vh);
        opacity: 1;
    }
}