*{
  margin: 0;
}

body {
  font-family: 'Exo', sans-serif;
  display: flex;
  flex-direction: column;
  background: #0170DB;
  color: white;
}

.wrapper{
  display: flex;
  flex-direction: column;
}
/*--------------------------------------------------------------------------------*/
.title_cont{
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.title_box{
  height: auto;
  width: auto;
  padding: 1em;
  background: rgb(1,1,1);
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  text-align: center;
  align-items: center;
  border-radius: 10px;
}

.smallText{
  font-size: 2em;
}

.contText{
  font-size: 2em;
}

.bigText{
  font-size: 5em;
  align-self: start;
}

.main_cont{
  display: flex;
  min-height: 55vh;
  padding: 5vh 1vw;
  align-items: center;
}

.box{
  display: flex;
  flex-direction: row;
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
}

.portBox{
  display: flex;
  margin: 0 10px 0 0;
}

.portrait{
  height: 55vh;
  width: auto;
  border-radius: 15px 0 90px 15px;
}

.portText{
  display: flex;
}

.skills_cont{
  display: flex;
  min-height: 55vh;
  padding: 5vh 1vw;
  align-items: stretch;
}

.skillsText{
  font-size: 2em;
}

.skillsBox{
  display: flex;
  justify-content: center;
  height: 40vh;
  width: auto;
/*   align-self: start; */
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  border-radius: 15px;
}

.skillsBox ul{
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

.logoCont{
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  width: auto;
  height: auto;
}

.logoBox{
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 40vh;
  width: auto;
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  border: 1px solid rgba(1,1,1,0.5662640056022409);
  border-radius: 0 15px 15px;
  margin: 10px;
}

.logoBox:hover{
/*   height: 41vh; */
  border: 1px solid white;
}

.projCont{
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  width: auto;
  height: auto;
}

.projBox{
  display: flex;
  flex-direction: column;
  height: auto;
  width: 40vw;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  border-radius:15px;
  margin: 10px;
  padding: 5px 10px 0;
}

.arcadeBox{
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  padding: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.projBox img{
  height: auto;
  width: 100%;
  border-radius: 15px;
  border: 2px solid white;
}

.arcadeBox img{
  border-radius: 15px;
  border: 2px solid white;
}

.projBox img:hover, .arcadeBox img:hover{
  border: 2px solid black;
}

.resumeBox{
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  padding: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.resumeBox a{
  text-decoration: none;
  color: white;
}

.resumeBox a:hover{
  color: grey;
/*   border: 1px solid red; */
}

.resumeBox img{
  border: 2px solid white;
}

.resumeBox img:hover{
  border: 2px solid black;
}

.footer{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50px;
  background: linear-gradient(90deg, rgba(1,1,1,0.5662640056022409) 100%, rgba(0,0,0,0) 100%);
  padding: 10px;
}

.footerText{
  font-size: 15px;
}

.flower{
  height: 50px;
  width: auto;
}

@media only screen and (max-width: 1003px){
  .bigText{
    font-size: 3em;
  }

  .smallText{
    font-size: 1em;
  }

  .contText{
    font-size: 1em;
  }

  .portBox{
    margin: 0 10px 0 0;
  }

  .portText{
    padding: 1em;
  }
  
  .portrait{
    height: 35vh;
    border-radius: 15px 0 30px 15px;
  }

  .logoBox{
    height: 35vh;
  }
}

@media only screen and (max-width: 600px){
  
  .box{
    border-radius: 10px;
    flex-direction: column;
  }

  .portrait{
    height: 20vh;
    border-radius: 0 0 15px 15px;
  }
  
  .portText{
    padding: 1em;
  }

  .logoBox{
    height: 20vh;
  }

  .projBox{
    width: 90%;
    height: auto;
    padding: 10px;
  }

  .projBox img{
    height: auto;
    width: 100%;
  }
}

@media only screen and (max-width: 301px){
  .bigText{
    font-size: 2em;
  }

  .contText{
    font-size:1em;
  }

  .smallText{
    font-size: 1em;
  }

  .box{
    flex-direction: column;
  }

  .portrait{
    border-radius: 0 0 15px 15px;
    height: 20vh;
  }
}