/* style.css */

/* Temel sıfırlama ve genel stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2e2e2e;
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Header */
header {
    background-color: #1d1d1d;
    padding: 30px;
    width: 100%;
}

.logo img {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 2s ease-out;
}

/* Progress bar */
.progress {
    margin: 20px 0;
    width: 80%;
    background-color: #444;
    border-radius: 10px;
    padding: 5px;
}

.progress-bar {
    height: 30px;
    background-color: #f1c40f;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.progress-fill {
    height: 100%;
    background-color: #3498db;
    width: 0%;
    animation: progress 3s forwards;
}

p {
    margin-top: 10px;
    font-size: 18px;
}

/* Main message section */
.message {
    margin: 30px 0;
    font-size: 24px;
}

h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Social Media */
.social-media {
    margin-top: 30px;
}

.social-icon {
    font-size: 30px;
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #3498db;
    transform: scale(1.2);
}

/* Footer */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 14px;
    color: #aaa;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 60%;
    }
}
