.header, .bannertext, .footertext {
    border: 1px rgb(95, 95, 95) solid;
    padding: 30px;
} 
.header{
    position: fixed;
    width: 100%;
    background-color: antiquewhite;
    z-index: 50;
}

body{
    background-color: antiquewhite;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.spacer{
    display:flex;
    justify-content: space-between;
    padding-top: 270px;
        /* border:1px solid black; */

}
.discription{
    font-size: 50%;
    align-items: center;
    display: flex;
    margin-right: 200px;
    width:500px;
    
}
/* New layout: name-wrapper holds two same-size squares (cube image and text square) */



/* Place cube behind the Lorem Ipsum description */
.discription{
    position: relative;

    /* border:1px solid black; */
}

.discription > .cube{
    position: absolute;
    width: 320px;
    height: 320px;
    object-fit: contain;
    z-index: 1;
    /* place the cube farther away from the text (more offset up-left) */
    top: -120px;
    left: -120px;
}

.discription > p{
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 5em;
}
.name-square{
    /* position: absolute; */
    width: 400px;
    height: 320px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: antiquewhite; /* same as body so the text block covers the cube where they overlap */
    margin-left: 100px;
}

.name-square p{
    margin: 0;
    font-size: 4rem;
    line-height: 1;
}

.header > .link {
    float: right;
    padding: 0px 10px
}

.footertext{
    /* position: fixed; */
    bottom: 0;
    left: 0;
    width: 100%;

    background-color: antiquewhite;
    padding: 0px;
    margin:0px
}
.footertext > p {
    padding: 0px;
    margin:0px
}
.projects{
    /* height: 400px; */
    display: flex;
    justify-content: space-between;
    /* padding: 10% */
    padding: 0% 10%
}
.projects > .project{
    width: 500px;
    height: 500px;
    margin: 10px;
    border: 10px solid black;
    background-color:rgb(255, 255, 255)

}
h1{
    text-align: center;
    font-size: 4em;
}

.title{
    padding-bottom: 100px;
}
.resume{
    text-align: center;
    height: 1150px
}
.resume > div{
    display: flex;
    justify-content: center;

    /* border: 1px solid black;
    height:4000px */
}
.resume > div > p{
    padding: 60px;
    width:320px
}
/* *{
    border: 1px black solid;
} */
a{
    color: black;
    text-decoration: none;
}



