img{
    width: 100%;
    max-width: 100%;
}

body {
    color: #333333;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    height: 40px;
    color: rgb(79, 76, 76);
}

nav a {
    display: block;
    padding: 5px 25px;
    background-color: rgba(253, 248, 238, 0.407);
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: .3s;
    
}

nav a:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}


header {
    background-color: #99d6d1;
    height: 40px;
    margin-bottom: 20px;
}

h1 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

h1 img {
    width: 100;
    height: auto;
}

.welcome {
    margin: 20px;
    text-align: center;
    font-size: 40px;
    font-weight: 900;
}

p {
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.8;
}

span {
    font-weight: bold;
    color: red;
    text-shadow: 0 0 15px #ff4d4d;
    

}
.mmvs {
    display: flex;
    justify-content: space-around;
}

.mmvs p {
    font-weight: bold;
}

.mmv-w {
    width: 500px;
}

.mmv:hover{
    transform: scale(1.08);
}

.mmv {
     transition: .3s;
}

h2 {
    text-align: center;
    background-color: #e0f9f6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    text-align: center;
}

address{
    text-align: center;
}

.bonnoukun {
   position: relative;
}   

.bonnoukun h2 {
    margin: 20px 0 20px;
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    background-color: #e0f9f6;
}

.bonnoukun img {
    width: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.bonnoukun img:first-child{
    left: 300px;
}

.bonnoukun img:last-child{
    right: 300px;
}

.bbm {
    font-weight: bold;
    font-size: 20px;
}

footer {
    background-color: #99d6d1;  
    height: 40px;
    font-weight: bold;
}


@media (max-width: 768px) {

    .mmvs {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mmv {
        width: 100%;
    }

    .mmv-w {
        width: 100%;
        max-width: 100%;
    }

    .mmv-w img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }.bonnoukun {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bonnoukun img {
    position: static;
    width: 55px;
    margin: 0;
}

.bonnoukun > div {
    min-width: 0;
    flex: 1;
}

.bonnoukun h2 {
    width: 100%;
    margin: 0 0 12px;
    font-size: 28px;
}

.bbm {
    font-size: 16px;
}


}