
/* For all pages 20px = 1rem*/ 
body {
    margin: 1rem;
    background-color: #1a1330;
    overflow-y: scroll;
    font-size: 20px;
}
.container {
  display: flex;
  justify-content: space-evenly;
}
.page-content{
  width: 100%;

  @media (min-width: 1800px){
    width: 90rem;
  }

}
#navagation-bar{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}


/* For the navigation bar */
li.navagation-item{
    float: left;
    font-size: 1.5rem;
}

li.navagation-item a {
    display: block;
    color: white;
    text-align: center;
    padding: .7rem .8rem;
    text-decoration: none;
}

li.navagation-item a:hover{
    background-color: #111;
}

/* Project Page */

.project-name{
    align-self: flex-start;
}

.project-image{
    width: 40rem;
    height: 30rem;
    margin: 1rem;

    @media (max-width: 75rem) and (min-width: 72.5rem){
      width: 38rem;
      height: 28.5rem;
    }
    @media (max-width: 1450px) and (min-width: 1400px){
      width: 36rem;
      height: 27rem;
    }
    @media (max-width: 1400px){
      width: 34rem;
      height: 25.5rem;
    }
    
}

.project-row-container{
  display: flex;
  align-items: center;

  @media (max-width: 1350px){
    display: inline-block;
  }
}


.circle{
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    object-fit: cover;
}

.row-container{
    display: flex;
    align-items: center;
}

h1{
    font-size: 3.5rem;
    padding: 1rem;
}

#initial-heading{
    color: #fffff2;
}

.white-text{
    color: #fffff2;
}

.large-text{
    font-size: 2rem;
}

.medium-text{
    font-size: 1.6rem;
}

.small-text{
    font-size: .9rem;
}

/* for my skillset stuff */
  
  .skills{
    width: 100%;
    max-width: 1500px;
    max-height: 700px;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
  }
  
  .skill-name{
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f1f1;
    text-transform: uppercase;
    margin: 1rem 0;
  }
  
  .skill-bar{
    height: 0.7rem;
    background: #282828;
    border-radius: 3px;
  }
  
  .skill-per{
    height: 0.7rem;
    border-radius: 3px;
    position: relative;
    width: 0%;
    background: #bc292b;
    transition: width 0.8s, background-color 0.8s;
  }

  /* other stuff */

   .skill-area{
    max-width: 10rem;
    width: 9rem;
  } 


  #asteroid_blisters{
    width: 20rem;
    margin: 1rem;
  }

  #mateus_brazil{
    margin: 1rem;
  }

  .n-project-container{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .n-thing{
    width: 25rem;
    height: 25rem;
    margin: 0;
    border: 1rem double rgb(240,235, 214);
    border-radius: 3%;
  }

  .n-thing-top-section{
    width: 100%;
    height: 66.25%;
    position: relative;
    display: block;
    border-bottom: .5rem solid rgb(224, 220, 201);
  }

  .n-thing-bottom-section{
    background-color: rgb(113, 113, 113);
    width: 100%;
    height: 33.75%;
    z-index: -3;
  }

  .n-thing-header{
    font-weight: bold;
  }
  
  .n-tech-logo{
    width: 3rem;
    height: 3rem;
  }