



*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HOME PAGE */

header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



header .logo
{
  color: #fff;
  cursor: pointer;
  font-family: "pritzious", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 80px;
  text-decoration: underline;
}


.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(images/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}



.toggle.active
{
  background: url(images/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}



.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}


.showcase.active
{
  right: 300px;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}



.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.text
{
  position: relative;
  z-index: 10;
}



.text h2
{
  font-family: "video", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  line-height: 3em;
  font-size: 70px;
}



.text p
{
  font-size: 40px;
  color: #fff;
  margin: 20px 0;
  max-width: 700px;
  font-family: "bree-serif", serif;
  font-weight: 300;
  font-style: normal;
  line-height: 50px;
}




.text a
{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
  font-family: "bree-serif", serif;
}


.email-item {
  color: #FFFFFF;
  padding-bottom: 10px;
}



.text a:hover
{
  letter-spacing: 6px;
}




.social
{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}



.social li
{
  list-style: none;
}



.social li a{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}


.social li a:hover{
  transform: scale(0.5) translateY(-15px);
}


.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.menu ul{
  position: relative;
}


.menu ul li{
  list-style: none;
  padding: 15px 15px;
  font-family: "articulat-cf", sans-serif;
}


.menu ul li a{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}



.menu ul li a:hover{
  color: #03a9f4; 
}

/* PROJECTS PAGE */

#projects-body{
  background-image: url('images/projects-background.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

#projects-header{
  position: relative;
  text-align: center;
  justify-content: center;
}

#projects-header h1{
  padding: 20px;
  font-size: 80px;
  text-align: center;
  color: #fff;
  font-family: video, serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 80px;
  color: #F1C93B;
}

#projects-header p{
  color: #fff;
  font-size: 40px;
  font-family: "bree-serif", serif;
  font-weight: 00;
  padding-bottom: 80px;
  line-height: 50px;
  color: #F1C93B;
}

.technologies{
  position: relative;
  justify-content: center;
  text-align: center;
}

.technologies h1{
  position: relative;
  justify-content: center;
  color: #fff;
  font-family: "bree-serif", serif;
  font-weight: 300;
  font-size: 60px;
  color: #F1C93B;
  text-decoration: underline;
}

.tech-images{
  position: relative;
  justify-content: space-around;
  padding: 50px;
}

.tech-img{
  display: inline;
  padding: 50px;
 
}


#card-container{
  padding-top: 20rem;
  padding-bottom: 35rem;
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}


/* PROJECTS PAGE CARD */

.card{
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 1.5);
  height: 400px;
  width: 300px;
  justify-content: center;
  margin: auto;
  padding-bottom: 300px;
  margin-bottom: 600px;
}

.card:hover .gradient{
  opacity: 1;
}

.gradient{
  position: absolute;
  background-image: linear-gradient(0deg, #e90606, transparent);
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

.info{

  top: auto;
  padding: 2rem;
  margin-top: 1rem;
}



.text h3 {
  text-align: center;
  color: #fff;
  font-family: "video", serif;
  font-weight: 100;
  padding-top: 20px;
  font-size: 40px;
  color: #FFCD38;
}

.info p {
  font-family: "mundial thin", sans-serif;
  line-height: 35px;
  font-size: 25px;
  font-weight: 100;
  text-align: center;
  color: #FFCD38;
}



.title{
  font-size: 2.2em;
  font-weight: 700;
}

.title p {
  font-size: none;
}

/* PROJECTS PAGE BUTTON */


.card-button {
  align-items: center;
  background-image: linear-gradient(144deg,#AF40FF, #373257 50%,#00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 19px 24px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  color: #FCFCFC;
}

.card-button {
  background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  font-family: "Inter UI","SF Pro Display","Segoe UI","Open Sans","Helvetica Neue",sans-serif;
  font-size: 20px;
  font-weight: 500;
  height: 4rem;
  padding: 0 1.6rem;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
  transition: all .5s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  padding: 19px 24px;
}

.card-button:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
  transition-duration: .1s;
}

@media (min-width: 768px) {
  .button-36 {
    padding: 0 2.6rem;
  }
}


.button-div{
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
  padding-left: 70px;
}

.card-button:active,
.button-63:hover {
  outline: 0;
}

@media (min-width: 768px) {
  .button-63 {
    font-size: 24px;
    min-width: 196px;
  }
}


/* FOOTER */

.footer{
  height: 50px;
  text-align: center;
  background-color: #000;
  justify-content: center;
  padding-top: 10px;
  width: 100%;
 }

 .container h3 {
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
 }


