body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #333;
}
.background {
    background-image: url(./images/street.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    min-height: 102vh;
    position: absolute;
    background-color: rgba(255,255,255,0.9);
    background-blend-mode: lighten;
    width: 100%;
}
.container {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 50%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 10rem;
}

h1 {
    font-size: 2rem;
}
p {
    font-size: 1.2rem;
}
.blue {
    color: rgb(129, 129, 254);
    font-weight: 400;
}
.logo {
    width: 40rem;
}
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 60px;
    height: 60px;
    position: relative;
}
.dot {
    width: 15px;
    height: 15px;
    margin: 3px;
    background-color: #333;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
.address {
padding-top: 3rem
}

@media screen and (max-width: 768px) {
    .container{
        width: 85%;
    }
}