body {
    margin: 0;
    background-color: #66fe2e;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    padding: 20px;
}

* {
    box-sizing: border-box;
}

.box {
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.title {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.projects-button,
.about-button,
.github-button {
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.projects-button {
    background-color: #007BFF;
}

.about-button {
    background-color: #28a745;
}

.github-button {
    background-color: #000000;
}

#contact-box {
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 10px;
    margin: 18px auto 0 auto;
    max-width: 360px;
}

.contact-item {
    font-size: 14px;
    margin: 4px;
}

#my-name {
    font-size: 60px;
    text-align: center;
    margin: 20px 0 5px 0;
}

#a-lil-desc {
    font-size: 22px;
    color: #666666;
    text-align: center;
    margin-bottom: 20px;
}

#desc-box {
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px auto;
    display: none;
}

#desc {
    font-size: 28px;
}

#Skills {
    font-size: 44px;
    text-align: center;
    margin-top: 30px;
}

#html,
#css,
#js,
#python {
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 15px;
    font-size: 22px;
    width: 100%;
    max-width: 900px;
    margin: 12px auto;
}

#html:empty,
#css:empty,
#js:empty,
#python:empty,
#my-name:empty,
#a-lil-desc:empty,
#Skills:empty {
    display: none;
}

.html-word {
    font-weight: bold;
    color: orange;
}

.css-word {
    font-weight: bold;
    color: blue;
}

.js-word {
    font-weight: bold;
    color: rgb(177, 177, 36);
}

.python-word {
    font-weight: bold;
    color: green;
}

#html-box,
#css-box,
#js-box,
#python-box {
    display: none;
}

#project-one-box,
#project-two-box {
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    display: none;
    overflow: auto;
}

#project-one,
#project-two {
    font-size: 42px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', serif;
    text-align: center;
}

#project-one-desc,
#project-two-desc {
    margin-top: 12px;
    font-size: 22px;
}

#project-one-link,
#project-two-link {
    margin-top: 10px;
    font-size: 22px;
    text-align: center;
}

#my-profile-pic {
    display: block;
    width: 360px;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
}

#project-one-pic,
#project-two-pic {
    width: 220px;
    height: 160px;
    object-fit: cover;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
}

@media (max-width: 700px) {
    body {
        padding: 12px;
    }

    .title {
        font-size: 34px;
    }

    .projects-button,
    .about-button,
    .github-button {
        font-size: 16px;
        padding: 9px 14px;
    }

    #my-name {
        font-size: 40px;
    }

    #a-lil-desc {
        font-size: 18px;
    }

    #desc {
        font-size: 20px;
    }

    #Skills {
        font-size: 34px;
    }

    #html,
    #css,
    #js,
    #python,
    #project-one-desc,
    #project-two-desc,
    #project-one-link,
    #project-two-link {
        font-size: 18px;
    }

    #project-one,
    #project-two {
        font-size: 30px;
    }

    #project-one-pic,
    #project-two-pic {
        float: none;
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto 12px auto;
    }
}

@media (max-width: 420px) {
    .title {
        font-size: 28px;
    }

    .button-container {
        display: block;
    }

    .projects-button,
    .about-button,
    .github-button {
        width: 100%;
        margin-top: 8px;
    }

    .contact-item {
        font-size: 12px;
    }

    #my-name {
        font-size: 32px;
    }
}
