body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images.jpg') no-repeat center center/cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
}

.logo img {
    width: 250px; /* Logonun boyutunu ayarlayabilirsiniz */
    margin-bottom: 20px;
}

h1 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 14px;

}

.footer img {
    width: 100px; /* Görüntü boyutunu ayarlayabilirsiniz */
}
