body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 800px;
    margin-bottom: 20px; /* Alt kısmında boşluk */
}

.logo-container {
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

.logo-caption {
    margin-top: 10px; /* Mesafe logonun altına */
    font-size: 14px; /* Yazı boyutu */
}

.separator {
    width: 2px; /* Separator width */
    height: 80px; /* Separator height */
    background-color: #333; /* Separator color */
    margin: 0 20px; /* Mesafe ekleme */
}

.homepage-message {
    text-align: center;
    margin-top: 20px; /* Üst kısmında boşluk */
}

.homepage-message a {
    font-size: 16px; /* Yazı boyutu */
    color: #007BFF; /* Yazı rengi */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.homepage-message a:hover {
    color: #0056b3; /* Hover rengi */
}
