@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: rgba(0, 0, 0, 0.911);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  min-height: 100vh;
}

a {
  color: #fff;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  width: 60%;
  height: 90vh;
}

aside {
  width: 40%;
  height: 90vh;
}

aside img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.box {
  background-color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.box:hover {
filter: invert(0.1);
}

.box:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.dark-box {
  background-color: #202020;
  margin-bottom: 3rem;
  transition: all 0.125s;
}

.dark-box:hover {
  filter: none;
}

.logo {
  color: rgba(0, 0, 0, 0.733);
  display: inline-flex;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin-right: 2rem;
  position: relative;
}

h1 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 3rem;
  margin: 0;
  opacity: 0.7;
}

h2 {
  font-size: 2rem;
  font-weight: normal;
  margin: 0;
  opacity: 0.9;
}

p {
  margin: 0;
}

h3 {
  color: #6f6f6f;
  font-size: 1.5rem;
  margin: 0;
}

.L {
  z-index: 1;
  padding-right: 32px;
  padding-top: 7px;
}

.triangle {
  height: 0px;
  width: 0px;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-bottom: 80px solid rgba(255, 255, 255, 0.699);
  margin-right: 2rem;
  position: absolute;
  z-index: 0;
}

.brightness {
  filter: brightness(2.25);
}

.text {
  width: 300px;
}

.fa-caret-right {
  font-size: 3rem;
  transition: all 0.125s;
}



.fa-caret-right:hover {
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  body {
    flex-direction: column;
    padding-right: 0;
  }

  .L {
    display: flex;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2rem;
  }

  #h3 {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .logo {
    margin: 0rem 2.8rem;
    margin-right: .9rem;
    margin-left: 2.4rem;
  }


  aside,
  main {
    height: auto;
    width: 100%;
  }
}