body {
  margin: 0;
  background: #050505;
  color: white;
  font-family: Arial;
}

/* TRANSITION */
.transition {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  top: 0;
  left: 0;
  z-index: 999;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 50px;
  background: linear-gradient(red, blue);
  -webkit-background-clip: text;
  color: transparent;
}

/* PORTFOLIO */
.projects {
  display: flex;
  gap: 20px;
  padding: 50px;
  flex-wrap: wrap;
}

.project {
  width: 250px;
}

.project img {
  width: 100%;
  border-radius: 10px;
}

/* BRANDS */
.logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  filter: grayscale(100%);
}

.logos img:hover {
  filter: grayscale(0%);
}

/* CONTACT */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
  margin: auto;
}