body {
    font-family: Arial, sans-serif;
     background: linear-gradient(to right, #ffecd2 0%, #f0f0f0 100%);

}

.container {
    max-width: 1200px;
    margin: 50px auto;
    margin-left: 270px; /* Add margin to avoid sidebar overlap */
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.hobbies-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hobby-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;  /* Increased padding */
    text-align: center;
    width: 350px;  /* Increased width */
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.hobby-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 5px rgba(0, 0, 0, 0.2);
}

.hobby-item img {
    width: 120px;  /* Increased image size */
    height: 120px;  /* Increased image size */
    margin-bottom: 10px;
}

.hobby-content h2 {
    margin: 0;
    font-size: 1.2em;
}
