* {
  margin: 0;
  padding: 0;
  font-family: 'Albert sans',sans-serif;
  text-decoration: none; 
}
*::selection{
  background-color: rgb(210, 26, 26);
  color: #fff;
}
body{
  background-color: #0e0e0e;
  color: #fff;
}

/* HEADER */
header{
  height: 100vh;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.subtitle{
  font-size: 15px;

  letter-spacing: 5px;
  line-height: 25px;
}
.title{
  font-size: 150px;
  font-weight: 900;


  letter-spacing: 10px;
  transition: all ease 5s;
}
.title:hover{
  color: rgb(210, 26, 26);
  cursor: pointer;
}
.header-sub{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header-sub a{
  color: #fff;
  font-family: sans-serif;
  font-size: 12px;

  margin: 5px;

}
.header-sub a:hover{
  background-color: #fff;
  color: #0e0e0e;
  cursor: pointer;
}
.subtitle2{
  font-size: 15px;
  text-align: right;

  letter-spacing: 5px;
  line-height: 25px;
}
/* ABOUT ME */
.about-me{
  margin: 10px;

  display: flex;
  flex-direction: column;
}
.about-me h1{
  text-align: left;
  letter-spacing: 5px;

  margin: 5px;

  font-size: 20px;
  font-weight: 900;
}
.about-me h1 span{
  font-weight: 100;
}
.about-me p{
  font-size: 25px;
  text-align: justify;
  line-height: 50px;

  margin: 50px;
  margin-right: 5%;
  margin-left: 10%;
}
.about-me p span{

  letter-spacing: 20px;
  font-size: 10px;
}
/* PROJECTS */
.my-projects{
  margin-top: 70px;
}
.my-projects h1{
  text-align: left;
  letter-spacing: 5px;

  margin: 10px;

  font-size: 50px;
  font-weight: 900;
}
.my-projects h1 span{
  font-weight: 100;
}
.descp{
  letter-spacing: 5px;
  font-size: 15px;
  margin-left: 50px;
}
.grid{
  margin-top: 100px;
}
.row{
  margin: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.card{
  border: 0.1px solid #fff;
  
  padding: 10px;
  margin: 10px;
  width: 50%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.card h3{
  font-weight: 800;
}
.card p{
  font-size: 10px;

  margin-top: 5px;
}
.card a button{
  font-weight: 800;
  color: #fff;
  background-color: #0e0e0e;
  border: 1px solid #fff;

  cursor: pointer;

  padding: 10px;
  margin-top: 25px;
  margin-bottom: 10px;

  transition: all ease 0.5s;

}
.card a button:hover{
  color: #0e0e0e;
  background-color: #fff;
}
/* BANNER */
.banner{
  height: 100vh;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.banner h1{
  font-weight: 900;
  color: rgb(210, 26, 26);
}
/* FOOTER */
footer{
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  margin-right: 30px;
  margin-bottom: 30px;
}
.footer{
  text-align: right;
  border: 1px solid #fff;

  padding: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.footer p{
  font-size: 12px;
}
.footer a{
  color: #171717;
  font-weight: 900;

  margin-top: 10px;

  transition: all ease 0.5s;
}
.footer a:hover{
  color: rgb(210, 26, 26);
}