body {
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    font-family: "Open Sans Light", sans-serif;
    height: 100vh;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: flex-end; /* Align content to the bottom */
    overflow: hidden; /* Prevent content from overflowing */
}

.container {
    background: inherit; /* Inherit the body background color */
    padding: 40px;
    border-radius: 10px;
    text-align: right; /* Right-align text */
    cursor: pointer; /* Change cursor to pointer to indicate interactivity */
}

a {
    color:white;
}

.text {
    font-size: 14px; /* Small font size */
    color: rgba(255, 255, 255, 0.7); /* White text color with transparency */
    line-height: 1.4;
}


.text p {
    margin: 0; /* Remove default margin for <p> element */
    color:white;
}

@media screen and (max-width: 768px) {
    .container {
        display: flex;
        padding-bottom: 150px;
        justify-content: center; /* Center content horizontally on mobile */
        align-items: center; /* Center content vertically on mobile */
        height: 100vh; /* Center vertically on mobile */
        justify-content: flex-end; /* Align content to the right */
        align-items: flex-end; /* Align content to the bottom */
        overflow: hidden; /* Prevent content from overflowing */
    }
    
}