
body {
    margin: 0px;
    font-family: Arial, sans-serif;
    background-color: #EBF5F0;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.section:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.25s;
}
.project-card {
    width: 100%;
}
.section {
    padding: 15px;
    height: auto;
    min-height: 150px;
    width: calc(100% - 40px);
    max-width: 1000px;
    min-width: 100px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px;
    box-sizing: border-box;
}
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.section-card {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
@media (max-width: 640px) {
    .section-grid {
        grid-template-columns: 1fr;
    }
}
.button {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 25px;
    width: 150px;
}
button:hover {
    cursor: pointer;
    height: 26px;
    width: 151px;
    transition: 0.3s;
}