body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100vh;
    color: white;
    background: linear-gradient(to right, #000d25, #002f4b);
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    
    margin-top: 100px;
   
}

.product {
    flex: 0 1 calc( 250px);
     
    max-width: calc(33.333% - 20px);
    
    box-sizing: border-box;
    margin: 20px;
    transition: transform 0.3s ease;
}

.product img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.1);
}

.logo {
    position: fixed;
    top: 10px;
    left: 18px;
    width: 300px;
    height: 150px;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;

    color: white;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.container {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    box-sizing: border-box;
}

.rectangle {
    width: 30%;
    height: 85px;
    border: 2px solid #09335b;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background 2s ease-in-out;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 35px;
    background-color: #060b3c;
    border-radius: 25px;
}

.rectangle:hover {
    background: linear-gradient(to right, #00E1FF, #0b3c60);
    transition: background 2s ease-in-out;
}

.responsive-gif {
    max-width: 50%;
    max-height: 250px;
    width: auto;
    height: auto;
    position: fixed;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .logo {
        width: 150px;
        height: 100px;
    }

    .rectangle {
        width: 90%;
        height: 55%;
        margin: 5px;
    }

    h1 {
        all: unset;
        font-size: 1.5em;
        color: inherit;
        margin: 10px;
        opacity: 0;
        animation: fadeInOut 6s infinite;
        background: linear-gradient(to right, #ffffff, #7ce7ff);
        -webkit-background-clip: text;
        color: transparent;
    }
}

.rectangle {
    position: relative;
    border-radius: 15px;
}

.link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
}

.active-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: green;
    color: white;
    padding: 2px 5px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}

.center-text {
    text-align: center;
}

.styled-heading {
    color: white;
    font-weight: bold;
    font-family: 'Arial', sans-serif; 
    font-size: 1.2em;  
    text-decoration: none;  
    opacity: 0.8;  
}

.styled-heading:hover, 
.styled-heading:visited, 
.styled-heading:focus, 
.styled-heading:active {
    color: white;  
    text-decoration: none; 
    border: none; 
    outline: none;  
}

a:visited {
    color: white;  
    text-decoration: none;  
    border: none;  
    outline: none;  
}



.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    margin: 0 10px;
    width: 300px;  
    height: auto;  
}
 


.isaret-span {
    font-size: 25px; 
}


body {
    margin: 0;
    padding: 0;
    
}
.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.image-container img {
    max-width: 100%;
    height: auto;
    margin: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
        text-align: center;
        text-align: center;
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: max-content;
    }
    .image-container {
        flex-direction: column;
    }
    .center-text {
        text-align: center;
    }
    .container, .rectangle {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }
}