/* styles.css */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    /* Your Chrome-specific styles here */
body {
    background-color: #C5C5C5;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: auto;
    overflow-y: scroll; 
}

.parent {
    position: relative;
    padding: 10px;
}

.img {
    width: 100%;
    height: 20%;
    perspective: 1000px;
     
}

.img img {
    transition: transform 0.5s;
}

.flip img {
    transform: rotateY(180deg);
}


.balls {
    position: absolute;
    top: 30%;
    left: 75%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: bold;
    right: 10px;
    color:#970C10;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    height: 35px;
    position:fixed;
    bottom: 0;
    width: 100%;
    font-size: 23px;
}

.text {
    position: absolute;
    top: 60%;
    left: 75%;
    transform: translate(-70%, -90%);
    font-weight: bold;
    font-style: italic;
    font-size: 25px;
    right: 10px;
}



section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    position: relative;
    top:-38px;
    
    
}


input {
    background-color: yellow;
    font-size: 18px; /* Corrected property name from 'size' to 'font-size' */
    padding: 12px;
    width: 150px;
    font-weight: bold;
    border-radius: 7.5px;
    transition: opacity 0.3s ease; /* Add a general transition for smooth effects */
}

.section {
    width:45%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}

input:hover {
    background-color: #FF6347; /* Change to a different color on hover, e.g., gold */
    color: #333; /* Adjust the text color for better visibility */
    opacity: 0.8; 
}

}