html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Barlow', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgb(0, 0, 0);
    z-index: -2;
}

.container {
    width: 25vh;
    text-align: center;
    position: relative;
    z-index: 5;
}

.container::before {
    content: " "; /* Add some content */
    background: transparent;
    width: 55vh;
    height: 55vh;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    z-index: -1;
    background: transparent; /* Add a transparent background */
}


/* Media query for screens where height is greater than or equal to width */
@media only screen and (orientation: portrait) {
    .container::before {
        width: 80vw;
        /* Adjust for taller screens */
        height: 80vw;
        /* Adjust for taller screens */
    }
}

.description-container {
    margin: 0;
}

.logo {
    width: 100%;
    margin: 0;
    pointer-events: none;
}


.keyword {
    font-size: 35px;
    font-weight: 300;
    line-height: 60px;
    color: white;
    text-align: left;
    display: block;
    /* This ensures that it will take up the full width */
}

.semibold {
    font-weight: 500;
    font-size: 120%;
}

/* Mobile-specific styles */
@media only screen and (max-width: 768px) {
    .container {
        width: calc(100% - 20px);
    }

    .logo {
        width: 40%;
        margin-bottom: 0px;
    }

    .keyword {
        font-size: 18px;
        line-height: 30px;
    }

    .semibold {
        font-size: calc(18px * 1.2);
    }
}