body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #18181a; /* Deep blue resembling the ocean */
    color: #3f3636; /* White text */
}

h1 {
    margin-bottom: 20px;
    font-size: 32px; /* Adjust the font size as needed */
}

.form__input {
    
        width: 250px; /* Adjust as needed */
        padding: 15px;
        box-sizing: border-box;
        border: 2px solid #ffffff;
        border-radius: 8px;
        background-color: #08080800;
        color: #fff;
        position: fixed;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    
    
}


.desc.left-margin {
    margin-left: 20px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #0000; /* Dark blue for footer */
    text-align: center;
    font-size: 14px; /* Adjust the font size as needed */
}

footer h2 {
    margin: 0;
}

footer span {
    font-size: 12px; /* Adjust the font size as needed */
}

/* Additional styles for the ocean theme */
#uv-error {
    color: #ffffff; /* White text */
}

#uv-error-code {
    color: #ffffff; /* White text */
}

/* Styles for links */
a {
    color: #0000; /* Light blue color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}




#fullscreen-btn {
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    position: absolute; /* Set the button to absolute positioning */
    top: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    background-color: #0000;
    
}


