html, body {
  height: 100%;
  margin: 0;
}

body 
{
    background-color: black;
    margin: 0%;
    display: flex;
    flex-direction: column;
}

.LogoParent
{
    background-color: black;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}

.Logo 
{
    height: 150px;
}

.navbar
{
    border-bottom: 2px solid white; /* Kalınlık | Stil | Renk */
}

.navbar ul
{
    list-style-type: none;
    background-color: black;
    padding: 20px;
    margin: 0px;
    overflow: hidden;
}

.navbar a
{
    background-color: white;
    color: black;
    text-decoration: none;
    margin-left: 10px;
    padding: 5px 10px;
    display: block;
    text-align: center;
    font-family: 'Calibri', sans-serif;
    font-weight: 1000;
    border-radius: 10px;
    font-size: 1rem;
}
.navbar a:hover
{
    background-color: hsl(0, 0%, 75%);
}

.navbar li 
{
    float: left;
}

.slider-wrapper
{
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.slider 
{
    display: flex;
    aspect-ratio: 16 / 5;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slider div
{
    display: flex;
    align-items: center;   /* Dikey ortalama */
    justify-content: center;

    width: 100%;
    height: 100%;
    flex: 1 0 100%;
    scroll-snap-align: start;
    overflow: hidden;
}

.slider-image
{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.slider-nav
{
    display: flex;
    column-gap: 5px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a 
{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    opacity: 0.75;
    outline: 1px solid white;
}
.slider-nav a:hover 
{
    opacity: 1;
}

.title
{
    color: white;
    font-family: 'Calibri', sans-serif;
    font-weight: 1000;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.blockpar
{
    display: grid;
    grid-template-columns: repeat(3, auto); /* 3 sütun */
    gap: 20px; /* Aralarındaki boşluk */

    justify-content: center;
    align-items: start;
}

.blocks
{
    margin-top: 20px;
    margin-bottom: 20px;
}

.blocks div
{
    text-align: center;
    margin-top: 20px;
}

.blocks a
{
    display: inline-block;
}

.blocks img
{
    width: 300px;
    outline-style: solid;
    outline-color: white;
    outline-width: 2px;
    border-radius: 10px;
    
    height: auto;
    display: block;
}

.footer
{
    width: 100%;
    height: 50px;
    color: white;
    font-family: 'Calibri', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    line-height: 50px;
    text-align: center;
    padding-bottom: 10px;
    border-top: 2px solid white; /* Kalınlık | Stil | Renk */
}

.about
{
    margin-top: 40px;
    margin-bottom: 40px;
    display: grid;
    place-items: center;
}

.about div
{
    color: white;
    font-family: 'Calibri', sans-serif;
    font-weight: 250;
    width: 500px;
}

main {
  flex: 1; /* İçerik alanı boşluğu doldurur */
}

.contact
{
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact ul
{
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.contact li
{
    display: inline-block;
    margin: 0 2px;
}

.contact img
{
    width: 50px;
    border-radius: 10px;
}

.dcrpt
{
    color: white;
    font-family: 'Calibri', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Her slayt kapsayıcısına ekle */
.slider > div {
    position: relative;
}

.slidelogo
{
    position: absolute;
    width: 100%;
    display: block;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-82%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slidelogo img
{
    width: 35%;
}

.slidelogo div
{
    width: 25% !important;
    height: 10% !important;
    flex: none;
    text-align: center;

    color: white;
    font-family: 'Calibri', sans-serif;
    font-weight: 750;
    font-size: 2vw;
}

@media (max-width: 1000px) {
.blocks img
{
    width: 200px;
}

.blockpar
{
    grid-template-columns: repeat(2, auto); /* 3 sütun */
}

}

@media (max-width: 500px) {

.blocks img
{
    width: 200px;
}

.blockpar
{
    grid-template-columns: repeat(1, auto); /* 3 sütun */
}

.navbar ul
{
    display: grid;
}

.navbar a
{
    margin: 5px 10px;
}

.slider
{
    aspect-ratio: 16 / 8;
}

.about div
{
    width: 300px;
}

.contact img
{
    width: 30px;
    border-radius: 5px;
}

}