@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    font-family: "Inter";
    padding: 0;
    margin: 0;
}

body {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 15px;
}

header .content-title .title {
    font-size: 15px;
    font-weight: 800;
}

header .content-links .list-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 15px;
}

header .content-links .list-links .link {
    text-decoration: none;
    color: black;
    font-size: 15px;
}

header .content-icons .theme {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    border: none;
    color: white;
    font-size: 15px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: black;
}

header .content-icons .menu {
    display: none;
}

.container-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 15px;
}

.container-about .content-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.container-about .content-details .box .title {
    font-size: 18px;
    font-weight: 800;
}

.container-about .content-details .box button {
    width: 150px;
    height: 50px;
    border: none;
    font-size: 15px;
    border-radius: 24px;
}

.container-about .content-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.container-about .content-more .desc {
    width: 500px;
    padding: 15px;
    background-color: whitesmoke;
    border-radius: 8px;
    font-size: 16px;
}

.container-about .content-details .content-more .banner {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 50px 0;
    gap: 25px;
}

footer .content-links .list-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 15px;
}

footer .content-links .list-links .link {
    font-size: 15px;
    color: black;
    padding: 10px;
    border-radius: 8px;
    background-color: whitesmoke;

    text-decoration: none;
}

footer .content-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

footer .content-copy .copy-text {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

footer .content-copy .list-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 15px;
}

footer .content-copy .list-links .link {
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.container-projects {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 100px 0;
    gap: 35px;
}

.container-projects .content-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;   
}

.container-projects .content-main .container-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.container-projects .content-main .banner {
    width: 100%;
    height: 300px;
    border-radius: 24px;
    object-fit: cover;
}

.container-projects .content-main .details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.container-projects .content-main .title {
    font-size: 18px;
    font-weight: 800;
}

.container-projects .content-main .link {
    font-size: 18px;
    color: black;
    text-decoration: none;
}

.container-projects .all {
    width: 150px;
    height: 50px;
    font-size: 15px;
    border: none;
    border-radius: 16px;
}