.content h2 {
    font-size: 140px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
    -webkit-text-stroke: 2px black; 
    text-stroke: 2px black; 
}

.content h2:hover {
    -webkit-text-stroke: 2px #fff;
    color: #9036e4d2;
    text-shadow: 4px 4px 8px rgba(144, 54, 228, 0.5);
    transform: scale(1.05);
}

body {
    background-color: #f0f0f0; 
    color: #333;
}

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
}

.content h2:hover {
    text-shadow: 4px 4px 8px rgba(144, 54, 228, 0.5);
    transform: scale(1.05); 
}


.content p {
    font-size: 3em; 
    font-weight: bold; 
    margin-top: 20px; 
}

/
.link-container img {
    width: 100px;
    height: auto;
    border-radius: 5px;
    border: 2px solid #fff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease; 
}

.link-container img:hover {
    transform: scale(1.1);
    border: 2px solid #d8a707;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.bottom-images img {
    width: 200px;
    height: 200px;
    margin: 0 10px;
    opacity: 0;
    animation: slideIn 5s forwards;
}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.bottom-images img:nth-child(2) {
    animation-delay: 0.5s;
}