* {
    box-sizing: border-box;
}

:root {
    --background-color: #f7f5f2;
    --primary-text-color: #333333;
    --secondary-text-color: #555555;
    /* --highlight-color: #ff6600; */
    --highlight-color: rgb(255, 103, 0);
    --accent-color: #4ecdc4;
    --header-color: #fc4a1a;
}

html {
    background-color: var(--background-color);
}

body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 10rem);
    text-align: center;
    color: var(--header-color);
    margin: 0;
}

img {
    width: 100%;
    max-width: 1000px;
}

h4 {
    margin: 0 0 15px 0;
    font-weight: 100;
    color: var(--secondary-text-color);
}

#portfolio-home {
    background-color: #f7f5f2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 5px 10px;
    position: fixed;
    left: 0;
    z-index: 999;
    border-radius: 5px;
    margin-left: 10px;
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    font-size: medium;
    border: #ff6600 solid 2px;
}

.vertical-centering {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-img {
    max-width: 1000px;
    margin: 0 auto;
}

.title-logo {
    max-width: 450px;
    margin-top: 30px;
}

#canvas1 {
    border: 3px solid var(--highlight-color);
    background: white;
    border-radius: 5px;
    width: 80%;
    height: 80%;
    max-width: 800px;
}

iframe {
    margin-top: 25px;
}


@media only screen and (min-width: 1024px) {

    .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 25px;
        max-width: 1400px;
    }
}