* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;  /* White background */
    color: black;  /* Change text color to black for visibility */
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;  /* Stack the elements vertically */
    align-items: center;  /* Center horizontally */
    height: 100vh; /* Full viewport height */
    margin: 0;
}

/* Center the logo container and make it responsive */
.logo-container {
    display: flex;
    justify-content: center;
    padding-bottom: 20px; /* Space between logo and the boxes */
    width: 100%;
    max-width: 700px;
}

.logo {
    width: 80%;  /* Set a percentage of the screen width */
    max-width: 700px; /* Ensure the logo does not exceed a max width */
    height: auto;
}

/* Container for the meeting boxes */
.container {
    display: flex;
    flex-direction: column; /* Stack the boxes vertically */
    align-items: center; /* Center the boxes horizontally */
    margin-top: 20px;
    padding: 2rem;
}

/* Individual meeting box styles */
.box {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 80%; /* Make the boxes a reasonable width */
    max-width: 300px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

.box:hover {
    background-color: #555;  /* Lighten on hover */
}

/* Make sure the layout is responsive for smaller screens */
@media only screen and (max-width: 275px) { /* For iPhone SE size (375px width) */
    .body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .logo {
        width: 50%;
        max-width: 300px;
    }

    .box {
        max-width: 250px;
        width: 50%;
    }
}

/* Make sure the layout is responsive for smaller screens */
@media only screen and (max-width: 375px) { /* For iPhone SE size (375px width) */
    .body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .logo {
        width: 50%;
        max-width: 300px;
    }

    .box {
        max-width: 250px;
        width: 50%;
    }
}

/* Make sure the layout is responsive for smaller screens */
@media only screen and (max-width: 600px) { /* For iPhone SE size (375px width) */
    .logo {
        width: 90%;
        max-width: 700px;
    }

    .box {
        max-width: 350px;
        width: 100%;
    }
}

/* Make sure the layout is responsive for smaller screens */
@media only screen and (max-width: 768px) { /* For iPhone SE size (375px width) */
    .logo {
        width: 100%;
        max-width: 750px;
    }

    .box {
        max-width: 450px;
        width: 100%;
    }
}

/* Make sure the layout is responsive for smaller screens */
@media only screen and (max-width: 1024px) { /* For iPhone SE size (375px width) */
    .logo {
        width: 100%;
        max-width: 750px;
    }

    .box {
        max-width: 550px;
        width: 100%;
    }
}