    * {
        box-sizing: border-box;
        font-family: 'Spartan', sans-serif;
        margin: 0 auto;
        padding: 0px;
    }
    
    body {
        background-color: #111;
        color: #f2f2f2;
    }
    
    .canvas-container {
        position: absolute;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    #dots {
        z-index: -1;
        background-color: black;
        width: 100vw;
        height: 100vh;
        position: absolute;
    }
    
    .my-name {
        font-size: 3rem;
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .my-disclaimer {
        font-weight: 300;
        font-size: 1.5rem;
    }
    
    section h2 {
        text-align: center;
    }
    
    section {
        padding: 80px;
        top: 100vh;
        width: 100vw;
        height: 100vh;
        position: relative;
    }
    
    #who {
        display: grid;
        grid-template-areas: "whoimage whoheader" "whotext whotext";
        grid-template-rows: 350px 1fr;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 100px;
    }
    
    #who>h2 {
        text-align: left;
        font-size: 1rem;
        align-self: center;
        justify-self: left;
        grid-area: whoheader;
    }
    
    #who>figure {
        display: flex;
        grid-area: whoimage;
        flex-direction: row-reverse;
    }
    
    .big-who,
    .big-portfolio {
        font-size: 2rem;
    }
    
    .display-image-header {
        width: 300px;
        padding: 2rem;
    }
    
    #who>article>button {
        float: right;
        padding: 10px;
        outline: none;
        cursor: pointer;
        font-size: 0.9rem;
        color: #f2f2f2;
        background: none;
        border: 1px solid #f2f2f2;
    }
    
    #who>article {
        line-height: 1.6rem;
        grid-area: whotext;
        font-weight: 200;
        padding: 1rem 10rem 3rem 10rem;
    }
    
    #who>article>p {
        text-align: justify;
    }
    
    #projects {
        display: grid;
        grid-template-areas: "projheader projimage" "projdisplay projdisplay";
        grid-template-rows: 350px 1fr;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 100px;
    }
    
    #projects>figure {
        grid-area: projimage;
        display: flex;
    }
    
    #projects>h2 {
        text-align: right;
        font-size: 1rem;
        align-self: center;
        justify-self: right;
        grid-area: projheader;
    }
    
    #projects>article {
        grid-area: projdisplay;
    }
    
    #projects>article>figure>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #projects>article {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(8, 5vw);
        grid-gap: 15px;
    }
    
    .projects-block-1 {
        margin: 0px;
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 3;
    }
    
    .project {
        position: relative;
    }
    
    .project:hover .project-overlay {
        opacity: 1;
    }
    
    .project-overlay {
        z-index: 2;
        width: 100%;
        height: 100%;
        position: absolute;
        transition: .5s ease;
        background-color: #00000083;
        display: flex;
        opacity: 0;
        margin: 0px;
        justify-content: center;
        align-items: center;
    }
    
    .btn-details-overlay {
        outline: none;
        cursor: pointer;
        background-color: inherit;
        color: white;
        border: solid, 1px, white;
        padding: 14px;
    }
    
    .projects-block-2 {
        margin: 0px;
        grid-column-start: 3;
        grid-column-end: 7;
        grid-row-start: 1;
        grid-row-end: 5;
    }
    
    @media screen and (max-width: 600px) {
        .my-name {
            font-size: 1.5rem;
        }
        .my-disclaimer {
            font-size: 0.75rem;
        }
        #who {
            padding: 40px;
            margin-bottom: 200px;
            grid-template-areas: "whoheader" "whoimage" "whotext";
            grid-template-rows: 1fr 1fr 1fr;
            grid-template-columns: 1fr;
        }
        #who>article>button {
            margin-top: 30px;
            width: 100%;
        }
        #who>h2 {
            justify-self: center;
            text-align: center;
        }
        #projetos>h2 {
            justify-self: center;
            text-align: center;
        }
        #who>article {
            padding: 1rem;
        }
    }