/* Full-page loader */
#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(22, 22, 22, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner */
#loader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #7db9ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-shape-divider-bottom-1726317071 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1726317071 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 217px;
}

.custom-shape-divider-bottom-1726317071 .shape-fill {
    fill: #7db9ff;
}

/* Body stil ayarları */
body {
    font-family: Arial, sans-serif;
    background-color: #141414;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation menüsü */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #1c1c1c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    transform: scale(1.1);
    background-color: #7db9ff;
    color: #141414;
}

/* Ana içerik */
header {
    padding: 50px;
}

h1 {
    font-size: 2.5em;
    color: #7db9ff;
}

p {
    font-size: 1.2em;
    color: #d3d3d3;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Butonlar arası boşluk */
    margin-top: 20px;
}

a.button {
    font-family: Arial, sans-serif;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    border: 2px solid #7db9ff;
    padding: 10px 50px; /* Buton genişliği ayarlandı */
}

a.button:hover {
    transform: scale(1.2);
    transition: 0.5s;
    background-color: #7db9ff;
    color: #141414;
}

/* Footer */
footer {
    margin-top: 50px;
    color: #d3d3d3;
}
