*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    position: relative;
}

.logo{
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img{
    width: 100%;
    object-fit: contain;
}

.adress{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.adress a{
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

.ajans{
    position: absolute;
    bottom: 20px;
    width: 80px;
    left: 50%;
    transform: translate(-50% , -50%);
}

.ajans img{
    width: 100%;
    object-fit: contain;
}

@media (max-width:991px) {
    .adress a{
        font-size: 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .adress{
        padding: 0 20px;
    }
}