body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 1200px;
    height: 80vh; /* Увеличена высота контейнера */
}

h1 {
    color: #ff009d;
}

.projects {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    border: 2px solid #ff007b;
    padding: 20px;
    border-radius: 10px;
}

.projects a {
    text-decoration: none;
    color: #fff;
    background-color: #ff007b;
    font-weight: bold;
    margin: 10px;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.projects a:hover {
    background-color: #a40778;
}

img {
    border-radius: 50%;
    margin-top: 20px;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

#shimeji-workArea {
    position: fixed;
    background: transparent;
    z-index: 2147483643;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    pointer-events: none;
}
