body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    background-color: #282828;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;  
    overflow-y: auto;
}

h3 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: -450px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.indirme-butonu {
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.indirme-butonu:hover {
    background-color: #0069d9;
}

.spoiler-container {
    margin-top: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    background-color: #282828;
    border-radius: 5px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.spoiler-button {
    background-color: #FFA500;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.spoiler-button:hover {
    background-color: #FFA500;
}

.spoiler-content {
    padding: 20px;
    background-color: #282828;  
    color: #fff;
    border-radius: 0 0 5px 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* When expanded, adjust max-height for content visibility */
.spoiler-content.expanded {
    max-height: 500px; /* Set a maximum large enough to show content */
}

.Rehberim {
    font-family: 'Imperial Script', cursive;
    font-size: 35px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {    
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}