/* Default styles for larger screens */

header {
    background-color: #ffffff;
}

a {
    font-family: "roboto sans";
    color: white;
    text-decoration: none;
}

#menubar-title {
    font-family: monospace, monospace;
    font-size: 35px;
    color: rgb(255, 255, 255);
    float: right;
    min-width: 165px;
    padding-left: 100px;
}

#menubar-items-container {
    background-color: #b7b7b7;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    outline: solid rgba(122, 122, 122, 0.405);
    list-style: none;
}

#about-button
{
    background: #0000 center/cover url('/icons/about.png') no-repeat;
    background-size: contain;
    background-position: 15px;
    padding-left: 35px;
    background-size: 18%;
}
#projects-button
{
    background: #0000 center/cover url('/icons/github.png') no-repeat;
    background-size: contain;
    background-position: 15px;
    padding-left: 35px;
    background-size: 18%;
}
#resume-button
{
    background: #0000 center/cover url('/icons/resume.png') no-repeat;
    background-size: contain;
    background-position: 15px;
    padding-left: 35px;
    background-size: 18%;
}
#contact-button {
    background: #0000 center/cover url('/icons/email.png') no-repeat;
    background-size: contain;
    background-position: 25px;
    padding-left: 45px;
    background-size: 18%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
}

main {
    color: white;
    background-color: #1b1b1b;
    display: flex;
    flex: 1;
    justify-content: center;
}

footer {
    background-color: #000000;
    color: #fff;
    padding: 5px;
    text-align: center;
}

/* Shared styles */
.section-title-big {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 60px;
}

.section-container {
    background-color: #0000;
}

.section-content {
    text-align: center;
    background-color: rgb(131, 131, 131);
    width: 100%;
    display: block;
    overflow: hidden;
}

#about-me-paragraph {
    font-weight: 500;
    font-family: 'Courier New', Courier, monospace;
    color: rgb(200, 171, 27);
    text-wrap: pretty;
    background-color: rgb(0, 0, 0);
    padding: 16px;
}

/* Media query for smaller screens */

@media screen and (max-width: 768px) {
    #menubar-title {
        float: none;
        min-width: auto;
        padding-left: 0;
        text-align: center;
    }
    #menubar-items-container {
        flex-direction: column;
        align-items: center;
    }
    #about-button,
    #projects-button,
    #resume-button,
    #contact-button {
        padding-left: 0;
        text-align: center;
        margin-bottom: 10px;
    }
}
