body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #FFE3F3;
    font-family: Arial, sans-serif;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.eyes-one {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1; 
}

.eyes-one img {
    display: block;
    max-width: 75%;
    height: auto;
    object-fit: cover;
}

.text .header {
    font-size: 45px;
    margin-bottom: 10px;
    color: rgb(89, 87, 87);
}

.text p {
    font-size: 25px;
}

.text {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: grey;
    z-index: 3;
    padding: 10px 0;
}

.eye, .other-eye {
    position: absolute;
    top: 60%;
    border-radius: 50%;
    overflow: hidden;
    width: 75px;
    height: 75px;
    z-index: 2;
}

.eye {
    left: 46%;
}

.other-eye {
    left: 55%;
}

@media (max-width: 900px){
    .eye, .other-eye {
        top: 80%;
        width: 40px;
        height: 40px;
    }
}

.eye img, .other-eye img {
    width: 100%;
    height: auto;
    object-fit: fill;
}

.email {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
}

.email input[type="email"] {
    height: 15px;
    width: 200px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    transition: all 0.3s ease;
    border-width: 0;
}

.email input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.email button {
    height: 36px;
    padding: 10px 20px;
    font-size: 16px;
    border-width: 0;
    border-left: none;
    border-radius: 0 5px 5px 0;
    background-color: rgb(180, 99, 99);
    color: white;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.email button:hover {
    background-color: rgb(207, 129, 129);
}
