* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.container {
    text-align: center;
}

.message {
    font-size: 2em; /* Yazı boyutunu 2em olarak değiştirdik */
    font-weight: bold;
    opacity: 0;
    animation: fadeInOut 5s infinite;
    transition: opacity 1s ease;
}

/* Logo stilleri */
.logo {
    max-width: 150px;
    margin-bottom: 20px;
    transition: transform 1.2s ease;
}

/* Logo üzerine hover efekti */
.logo:hover {
    transform: scale(1.5); /* Logoyu %10 büyütme */
}

/* Fade in/out animation for the message */
@keyframes fadeInOut {
    0%, 20% {
        opacity: 0;
    }
    25%, 75% {
        opacity: 1;
    }
    80%, 100% {
        opacity: 0;
    }
}

/* Disable right-click */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body::before {
    content: 'Right-click is disabled';
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 1rem;
    color: white;
    display: none;
}

body:context-menu {
    display: none;
}
