
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
/*    display: flex; */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f8ff;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}


h1 {
    font-family: 'Lobster', cursive;
    color: #333;
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    color: #777;
    font-size: 1.2em;
}


.carousel {
    display: flex;
    align-items:center;

    margin: 40px auto;
    width: 80%;
    background-color:rgb(230, 240, 240);
    border-radius: 1%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel a img {
    float: left;
    width:  250px;
    height: 250px;
    background-size: cover;

    /*width: 75%;
    height: auto;*/
    border-radius: 10%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px;

    display: block;
}

.videos {margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 40px auto;
    width: 60%;
    background-color:rgb(240, 239, 230);
    border-radius: 1%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-top: 50px;
}

.videos video {
    width: 50%;
    max-width: 600px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
}

@media (min-width: 600px) {
    .images {
        display: flex; 
        justify-content: center;
    }

    .images img {
        max-width: 45%;
    }
}
