


@font-face {
    font-family: Green_Energy;
    src: url('media copy/Green_Energy.ttf'); 
}


body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-color: black; 
    background-image: url('media copy/t3z89pl5toe71.jpg.webp');  
    background-size: cover; 
   backdrop-filter: blur(3px);
    background-position: center; 
    background-repeat: no-repeat; 
    color: #0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Green_Energy', sans-serif;
    text-align: center;
    overflow: hidden;
    position: relative; 
}




.title {
    font-size: 4em;
    text-shadow: 2px 2px 10px rgba(0, 255, 0, 0.8);
    font-family: 'Green_Energy', sans-serif;
    margin-bottom: 10px;
}

.title2 {
    font-size: 2em;
    text-shadow: 2px 2px 10px rgba(0, 255, 0, 0.8);
    font-family: 'Green_Energy', sans-serif;
    margin-bottom: 10px;
    margin-top: 95px;
}


.can-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Responsive */
}


.can-box {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    position: relative; 
}


.can-box:hover {
    transform: scale(1.2);
}

/* Can Image */
.can {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
}


.can-title {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Green_Energy', sans-serif;
    font-size: 1.7em;
    color: #ffffff; /* Bright Blue */
    text-shadow: 0 0 10px rgba(0, 191, 255, 1), 0 0 20px rgba(0, 191, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Title on Hover */
.can-box:hover .can-title {
    opacity: 1;
}

.img{
    width: 100%;
        height:100%;
}










