* {
    margin: 0px;
    padding: 0px;
    
}

#header {
    width: 100%;
    height: 120px;
    background-color: #c8102e;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

#car {
    position: absolute;
    top: 90%; 
    transform: translateY(-50%);
    left: -80px; 
    font-size: 30px;
    color: white; 
    animation: drive 6s linear infinite;
    pointer-events: none; 
}

@keyframes drive {
    0% {
        left: -80px;
    }
    100% {
        left: 100%;
    }
}

#logo {
    width: auto;
    height: 120px;
    margin-left: 50px;
    background-color: #c8102e;

}

#govde {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: #e3e3e3;

}

.kutu {
    height: 500px;
    background-color: #e3e3e3;
    display: inline-block;
    margin: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
    border-radius: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), -2px -2px 5px rgb(255, 255, 255);
}


#iletisim {
    width: 30%;

}

.yazi {
    color: #2f2f2f;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

#iletisimbaslik {
    text-align: center;
    margin-top: 30px;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#usta1,
#usta2 {
    margin: 30px 0px 10px 20px;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#no1,
#no2 {
    margin-left: 50px;
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    display: inline-block;
}



.btn{
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    color: #e3e3e3;
    padding: 5px 8px;
    background-color: #2f2f2f;
    border-radius: 10px;
    border: none;
}

.btn:hover{
    background-color: #c8102e;
}

#adresbaslik {
    text-align: center;
    margin-top: 60px;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#adres {
    text-align: center;
    margin: 20px 50px;
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

#konum {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#harita {
    border-radius: 29px;
}

#footer {
    width: 100%;
    height: 65px;
    background-color: #2f2f2f;
    text-align: center;
    align-content: center;
}

#footeryazi {
    color: #e3e3e3;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

/* Tabletler için */
@media (max-width: 984px) {

    #govde {
        flex-direction: column;
        
        
    }

    #iletisim,
    #konum {
        width: 90%;
        flex: none;
        margin: auto;
        margin-top: 30px;
    }
    #konum {
        margin-bottom: 30px;
    }
}

/* Mobil için */
@media (max-width: 500px) {
    #footeryazi {
        font-size: 12px;
    }

    #header,#logo {
        height: 90px;
    }

    #logo {
        margin-left: 20px;
    }

    #car {
        font-size: 20px;
        animation: drive 5s linear infinite;
    }

}