* {
  box-sizing: border-box;
}

body, html {
  font-family: "signo", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  height: 100%;
}


.hero-image {
  background-image: url(image/oranges.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

header.hero-text {
 position: absolute;
 right: 0;
 bottom: 50%;
 width: 50%;
 min-width: 450px;
 transform: translateY(40%);
 color: white;
 padding-right: 10%;
}

header.page {
  background-image: linear-gradient(#79B0E6, white );
  margin-bottom: 80px;
}

h1 {
  font-size: clamp(5em, 8vw,8vw);
  text-align: center;
  font-family: "pf-marlet-display", sans-serif;
  font-weight: 500;
  font-style: normal;
}

h2 {
  color:#79B0E6;
  font-size: clamp(6em, 8vw,8vw);
  font-family: pf-marlet-display, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  padding: 0;
  margin: 150px 0 0 5%;

}

.border {
  border-bottom:2px solid #79B0E6;
  margin: 0 65% 0 5%;
  
}

h3 {
  font-family: pf-marlet-display, sans-serif;
  font-weight: 700;
  font-style: normal;
  color:white;
  font-size:4em;
}

footer {
  background-color: #79B0E6;
color: white;
padding: 1% 5%;
}





.clown-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0 8% 0 8%;
}

.clown-flex img {
  height: 300px;
  width: 300px;
  margin: 20px;
  border-radius: 6px;
}

.me-flex {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #79B0E6;
  margin: 0 8% 0 8%;
  border-radius: 13px;
  align-items: center;
  background-color: #79B0E6;
}
.me-info {
flex: 70%;
padding: 5% 10% 7% 8%;
}
.me-image{
flex: 30%;
padding: 30px;
}

.me-image img{
  width: 100%;

  border-radius: 13px;
  padding-top: 15px;

}

/* PROJECTS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.projectgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  /* fr=fraction, 1fraction of the screen thrice :0 i could do auto but i chose that idk y */
  column-gap: 30px;
  row-gap:    30px;
  margin: 8%;
  align-items: stretch;
}
.project {
  background-color: #79B0E6;
  text-align: center;
  padding: 2%;
  border-radius: 13px;
}
.project img{
  border-radius: 11px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 20px;
}

/* PROJECT LINKS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.projectgrid a, .projectgrid a:visited, .projectgrid a:active {
  text-decoration: none;
  color: black;
  transition: .3s;
}

.projectgrid a:hover{
   transform: scale(1.1);
   box-shadow: 0 0 15px #496a8a;
   transition: .3s;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */


nav.hero-nav ul {
  padding: 0;
  margin: 0;
  text-align: center;
}

nav.hero-nav li {
  list-style-type: none;
  display: inline-block;
  padding-bottom: 35px;
  margin: 0 4% 0 4%;
}
  
nav.hero-nav a, nav.hero-nav a:visited, nav.hero-nav a:active {
  display: inline-block;
  text-decoration: none;
  color:white;
  padding: 8px 15px 8px 15px;
  border-radius: 5px;
  border: 2px solid white;
  transition: .2s;
font-size: 1.2em;
}

nav.hero-nav a:hover {
transform: scale(1.2);
transition: .2s;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.topbar {display:flex;
flex-wrap: wrap;
width: 100%;
align-items: center;
padding: 2% 5% 0 5%;
justify-content: space-between;
text-wrap: nowrap;
/* background-color: aqua; */
}

a.backto, a.backto:visited, a.backto:active {
  font-family: "pf-marlet-display", sans-serif;
  font-weight: 500;
  font-style: normal;
font-size: 2em;
flex: 50%;
color: white;
text-decoration: none;
}

nav{  
  position: relative;
  flex: 50%;
 margin: 0;
 padding: 0;

}
 nav ul {
  margin: 0;
  padding: 0;
  text-align: right;
  

  }
  
   nav li {
    list-style-type: none;
    display: inline-block;
    margin: 0 2% 0 2%;
    padding: 0;
  }
    
nav a, nav a:visited, nav.page a:active {
    display: inline-block;
  /* it needs this for hover to work....... */
    text-decoration: none;
    color:white;
    padding: 8px 15px 8px 15px;
    border-radius: 5px;
    border: 2px solid;
    transition: .2s;
  font-size: 1em;
  }
  
 nav a:hover {
  transform: scale(1.2);
  transition: .2s;
  }
  



@media (max-width: 700px) {

  nav.page ul {
    text-align: center;
  }

  a.backto{
    text-align: center;
    margin-bottom: 10px;
  }
  header.page {
    margin-bottom: 30px;
  }
  
  h2 {
    text-align: center;
    margin-top: 60px;
    }
  .projectgrid {
    display: grid;
    grid-template-columns: 1fr;
  } 
}