html,
body {
    height: 100%;
    width: 100%;
    background-color: #f5f4f3;
}

.center {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.image-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
   
}


/* Default sizes for larger screens */
.image1 {
    width: 200px; /* Width for laptops */
    height: auto;
    margin: 0 10px; /* Space between images */
}

.image2 {
    width: 450px; /* Width for laptops */
    height: auto;
    margin: 0 10px; /* Space between images */
}

/* Media queries for responsive design */

/* For tablets and mobile devices */
@media (max-width: 768px) {
    .image1 {
        width: 130px; /* Adjust the width for tablets and smaller screens */
    }

    .image2 {
        width: 250px; /* Adjust the width for tablets and smaller screens */
    }
}

/* For mobile devices only */
@media (max-width: 480px) {
    .image1 {
        width: 100px; /* Further adjust the width for smaller screens */
    }

    .image2 {
        width: 220px; /* Further adjust the width for smaller screens */
    }
}




/* Slogan text styles */
.slogan {
    font-family: 'Merriweather', serif; 
    font-size: 36px;
    font-weight: 700; /* Adjust the font size as needed */
    color: #333333; /* Change text color as needed */
    margin-bottom: 30px; /* Space between text and SpinKit loader */
    text-align: center;
    
}


/* Credits: https://tobiasahlin.com/spinkit/ */

.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #F6C350;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }
    100%,
    0% {
        transform: scale(1.0);
    }
}