* {
  box-sizing: border-box;
}

body {
  background-color: #030b0d;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  padding-top: 20px;
  padding-bottom: 0;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

h1 {
  font-size: 46px;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 20px;
  padding-left: 40px;
  line-height: 1;
}
@media only screen and (min-width: 64em) {
  h1 {
    font-size: 86px;
  }
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
  text-transform: uppercase;
}

p {
  font-size: 12px;
  line-height: 1.6;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
}
.btn {
  text-decoration: none;
  color: #fff;
  background-color: #F95C32;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 12px 14px;
  margin-top: 20px;
  margin-bottom: 40px;
  display: inline-block;
  line-height: 1;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    color: #F95C32;
    background-color: #fff;
  }
}

.text-center {
  text-align: center;
}

.main-content {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.main-content .about, .main-content .projects {
  padding-left: 40px;
  padding-right: 40px;
}
.main-content .projects {
  padding-bottom: 120px;
}
@media only screen and (min-width: 48em) {
  .main-content {
    display: flex;
  }
  .main-content .about {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 24px;
    flex: 0 0 220px;
  }
}
@media only screen and (min-width: 75em) {
  .main-content .about {
    flex: 0 0 300px;
  }
}

.projects {
  flex-grow: 1;
}
.projects > ul {
  display: grid;
  gap: 80px 20px;
  grid-column: 1/span 6;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 48em) {
  .projects > ul {
    grid-column: 1/span 12;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .projects > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project {
  display: grid;
  grid-template-rows: auto 1fr;
}
.project .image {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.666666%;
}
.project img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 1;
  transition: all 0.4s ease;
  filter: grayscale(1);
}
.project a {
  color: #fff;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .project a:hover img {
    transform: scale(1.03);
    filter: grayscale(0);
  }
}
.project .meta {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.project .meta li {
  background: #F95C32;
  font-size: 12px;
  color: #fff;
  padding: 2px 4px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 40px;
}

/*# sourceMappingURL=style.css.map */
