body {
    font-family: 'system-ui';
    font-size: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(20deg, #a8a8a8, #1c1c1c);
    color: #333;
}

footer {
    background-color: #343a40;
    color: #fff;
    padding: 10px;
    text-align: center;
}

nav {
    background-color: #343a40;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}

section {
    padding: 20px;
    margin: 80px auto 20px;
    border-radius: 5px;
    max-width: 1200px;
    background-color: #f8f9fad7;
}
section#about {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
    margin: 80px auto 20px;
    max-width: 1200px;
    padding: 20px;
    background-color: #f8f9fad7;
    border-radius: 5px;
}
section#about img {
    max-width: 400px;
    height: auto;
    border-radius: 5px;
}
section#about div {
    flex: 1;
    padding: 10px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    gap: 20px;
}

.project {
    width: calc(50% - 20px);
    max-width: 600px;
    background-color: #f8f9fa8a;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.project p {
    text-align: justify;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #699AB3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.download-button:hover {
    background-color: #4a6e80;
}

.project img {
    max-width: 350px;
    height: auto;
    border-radius: 5px;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.platform {
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 300px;
}


.platform img {
    width: 100px;
    height: auto;
    margin-bottom: 5px;
}

.platform p {
    margin: 0; 
    font-size: 14px;
}

@media (max-width: 768px) {
    nav ul {
        white-space: nowrap; 
        flex-direction: column; 
        gap: 10px;
    }

    section#about {
        flex-direction: column;
        text-align: center;
    }

    section#about img {
        width: 70%;
        margin-bottom: 20px;
    }

    section#about div {
        padding: 0;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .project {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 90%;
    }

    section#about img {
        width: 80%;
    }

    section#about p {
        font-size: 14px;
    }

    .download-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    nav ul {
        justify-content: space-between;
    }

    nav ul li a {
        font-size: 12px;
    }

    .project img {
        width: 70%;
    }

    .platform img {
        width: 40%;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .platform {
        text-align: center;
        width: 100%;
    }

    .download-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

