* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    width: 150px; /* Adjust width as needed */
}

.address {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
    color: #808080;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        width: 200px; /* Adjust for tablet */
    }

    .address {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 150px; /* Adjust for mobile */
    }

    .address {
        font-size: 10px;
    }
}
