/* Genel Stil */
body,
html {
    margin: 0;
        padding: 0;

font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
   
    position: relative;
    flex-direction: column;
}



.top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
       margin-bottom: 20px;
}

.top-right {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.navigation {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.navigation a:hover {
    text-decoration: underline;
}






#slider {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    height: 720px; /* Slider için sabit bir yükseklik belirleyin */
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    height: 100%; /* Slide yüksekliğini slider ile aynı yapın */
}

.slide img {
    width: 100%;
    height: 100%; /* Resim yüksekliğini de ayarlayın */
    object-fit: cover; /* Resmi slider boyutlarına göre kırparak boyutlandırır */
    border-radius: 10px;
}


/* Slider okları */
.prev, .next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#upcoming-conference {
    width: 600px ;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    margin: 40px auto;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 10px 0;
}

.button.profile {
    background-color: #ff6600;
}

.button:hover {
    background-color: #0056b3;
}

.button.profile:hover {
    background-color: #cc5200;
}
footer {
    background-color: black;
    color: white;
    text-align: center;
    //padding: 10px 0;
    margin-top: 40px;
}
