*   {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Oswald", sans-serif;
}

h1  {
    text-decoration: underline;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-size: 11rem;
    /* font-size: 8rem; */
}

h2  {
    font-size: 6rem;
    text-transform: uppercase;
    text-align: right;
    margin-top: -30px;
}

h3  {
    margin-top: -20px;
}

p   {
    font-size: 20px;
}

a   {
    text-decoration: none;
    color: black;
}

li  {
    list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.parent {
    height: 100vh;
    display: grid;
    grid: auto 1fr auto / 250px 1fr 250px;
    gap: 8px;
}

header, main, footer,
.left-sidebar, .right-sidebar   {
    padding: 10px;
}

header  {
    grid-column: 1 / 4;
}

.left-sidebar   {
    grid-column: 1 / 2;
    background-color: lightgrey;
}

.ls-h3  {
    color: whitesmoke;
    font-size: 2rem;
    font-weight: 900;
    margin-top: 60px;
    margin-left: 24px;
}

hr  {
    margin-left: 24px;
    margin-top: 4px;
    border: 1px solid whitesmoke;
    max-width: 95%;
}

.all-projects   {
    margin-left: 32px;
}

.list   {
    margin-top: 16px;
}

main    {
    grid-column: 2 / 3;
    border: 24px solid black;
    /* background-image: url("images/Screenshot 2025-06-13 at 2.06.34 PM.png"); */
    /* background-image: url("https://images.pexels.com/photos/2167395/pexels-photo-2167395.jpeg?auto=compress&cs=tinysrgb&w=800") */
    /* background-repeat: no-repeat; */
    background-size: cover;
    /* filter: grayscale(100%); */
}

.right-sidebar  {
    grid-column: 3 / 4;    
}

.rs-p   {
    font-family:'Times New Roman', Times, serif !important;
    line-height: 20px;
    padding-top: 0px;
}

button  {
    border: 2px solid black;
    height: 56px;
    padding: 16px 24px;
    color: black;
    margin-top: 16px;
}

footer  {
    grid-column: 1 / 4;
    border: 1px solid hotpink;
}

.header-child   {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact-box    {
    height: 150px;
    width: 400px;
    border: 2px solid black;
}

.contact    {
    text-align: center;
    margin-top: 25px;
}

.name   {
    font-style: italic;
    font-family: serif;
}

.blah   {
    text-align: right;
}



footer  {
    display: flex;
    flex-direction: row;
}

.boxes  {
    height: 150px;
    width: 150px;

}

.box1   {
    background-color: #A8BDBF;
    margin: 16px;
}

.box2   {
    background-color: #C5D7D9;
    margin: 16px;
}

.box3   {
    background-color: #3F7373;
    margin: 16px;
}

.box4   {
    background-color: #768C45;
    margin: 16px;
}

.box5   {
    background-color: #F2F1F0;
    margin: 16px;
}

@media (max-width: 768px) {
    .parent {
        grid: repeat(5, 1fr) / 1fr;
    }

    header, main, footer, .left-sidebar, .right-sidebar {
        grid-column: 1/2;
    }

    main {
        margin-top: 20px;
    }

    .header-child   {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact-box    {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }


    .contact    {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 55px;
    }
    .contact-box-word   {
        padding-left: 15px;
    }

    h1  {
        line-height: 150px;
        font-size: 8rem;
    }

    h2  {
        line-height: 80px;
        text-align: center;
        margin-top: 20px;
        font-size: 4.75rem;
    }

    .all-projects   {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .list   {
        padding: 10px;
    }
}
