html, body {
    background-color: white;
    color: black;
    font-family: sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    /* Removes underline */
    color: black;
    /* Keeps the text color as it was */
}

.logo:hover {
    text-decoration: none;
    /* Ensures there's no underline on hover */
}

a.logo {
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    padding: 12px;
}

.content {
    padding: 20px;
    flex: 1;
}

/* Hide sections by default */
.section {
    display: none;
    text-align: center;
}

img {
    display: block;
    margin: 10px auto;
    /* Adjust the value to control the spacing */
}

/* Add margins to work containers for spacing */
.work-container {
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    gap: 200px;
    /* Adjust the value to control the horizontal spacing */
}

/* Style individual work items (image + text) */
.work {
    text-align: center;
    margin-bottom: 200px;
    /* Adjust the value to control the vertical spacing */
}

.block-sentence {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ffffff;
    margin: 10px 0;
    text-align: justify;
}

/* Styles for screens larger than 600 pixels */
@media (min-width: 600px) {
    /* Add your desktop styles here */
}

/* Styles for screens up to 600 pixels (mobile devices) */
@media (max-width: 600px) {
    /* Add your mobile styles here */
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    display: flex;
    flex-wrap: wrap;
    /* Add other styles as needed */
}

