/*home.css*/

.home-page {
    margin: 20px auto;
    max-width: 800px;
}

.home-page .logo {
    display: block;
    margin: 20px auto;
    max-width: 150px;
    border-radius: 10px;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow:
    inset 0 -3em 3em rgba(0, 0, 0, 0.1),
    0 0 0 0.5px rgb(255, 255, 255),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

.home-page .logo:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow:
    inset 0 -3em 3em rgba(0, 0, 0, 0.1),
    0 0 0 0.5px rgb(255, 255, 255),
    0.5em 0.5em 2em rgba(0, 0, 0, 0.4);
}

.home-page h2 {
    font-size: clamp(1rem, 4vw, 1.8rem);
}

.base-philosophy {
    font-style: italic;
    text-align: right;
    color: #555;
    font-size: 14px;
}

.ideal-place {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    text-align: center;
}