body {
    background: #008080;
    padding: 20px;
    overflow-x: hidden;
}

p, li, button, a {
    font-size: 15px;
    font-weight: 600;
}

.app {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Layout */
.top-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.bottom-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.section {
    margin: 0;
}

.title-bar-text {
    font-size: 15px;
}

/* Inicio */
#inicio {
    flex: 1;
}

.inicio-window {
    padding: 10px 0;
}

.inicio-window h1 {
    font-size: 50px;
    margin-top: 10px;
}

.inicio-window h2 {
    color: darkblue;
    margin-bottom: 10px;
}

/* Contacto */
#contacto {
    width: 250px;
    flex-shrink: 0;
    margin-top: 40px;
}

.contacto-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 5px 5px;
}

.contacto-window a {
    width: auto;
    text-decoration: none;
}

.contact-btn {
    width: 90px;
    height: 90px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 6px;
    padding: 6px;
}

.contact-btn img {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
}

.contact-btn span {
    font-size: 12px;
    line-height: 1;
}

/* Skills */
#skills {
    flex: 1;
    min-width: 300px;
}

.skills {
    padding: 10px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.skills .title-bar {
    background: #008080;
}

.skills ul {
    margin: 0;
    padding-left: 20px;
}

.skills li {
    margin-bottom: 5px;
}

/* Proyectos */
#proyectos-destacados {
    flex: 1.5;
    margin-top: 50px;
}

.proyectos {
    padding: 10px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.proyectos .title-bar {
    background: #008080;
}

.proyectos-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.proyectos .window {
    display: flex;
    flex-direction: column;
}

.proyectos .window-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.proyectos .window-body button {
    margin-top: auto;
}

.proyectos img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

.proyectos p {
    min-height: 30px;
}

/* Tablet */
@media (max-width: 1100px) {

    .top-row,
    .bottom-row {
        flex-direction: column;
    }

    #inicio,
    #contacto,
    #skills,
    #proyectos-destacados {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    #contacto {
        width: 100%;
    }

    .contacto-window {
        flex-direction: row;
        justify-content: center;
        padding: 15px;
    }

    .proyectos {
        grid-template-columns: repeat(3, 1fr);
    }

    .top-row,
    .bottom-row {
        gap: 20px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    #contacto,
    #proyectos-destacados {
        margin-top: 0;
    }
}

/* Celular */
@media (max-width: 600px) {

    body {
        padding: 8px;
    }

    #inicio,
    #contacto,
    #skills,
    #proyectos-destacados {
        margin-bottom: 12px;
    }

    .window {
        box-sizing: border-box;
    }

    .inicio-window h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .inicio-window h2 {
        font-size: 18px;
    }

    .contacto-window {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        padding: 15px 10px;
    }

    .proyectos {
        grid-template-columns: 1fr;
    }

    .proyectos-header {
        justify-content: center;
    }

    .skills {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-row,
    .bottom-row {
        margin-top: 0;
        margin-bottom: 0;
        gap: 12px;
    }

    #contacto,
    #proyectos-destacados {
        margin-top: 0;
    }
}