/* Beginning of structure */

.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.home-box {
  width: 100%;
  height: 95vh;
}

.projects-box {
  width: 100%;
  height: auto;
  background-color: aliceblue;
}
.home-box {
  display: flex;
  align-items: center;
  border: none;
  overflow-y: hidden;
  flex-direction: row;
  justify-content: right;
  border: solid 2px black;
}

.home-background {
  background-image: url("/assets/images/background-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: -1;
  /* filter: blur(12px); */
  overflow: hidden;
}

.home-text-box {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border: 4px solid black;
  box-shadow: 1px 1px 2px black;
  max-width: 600px;
  margin-right: 40px;
  text-align: center;
}
.home-text {
  margin-bottom: 20px;
}
.blog-box {
  background-color: darkcyan;
}
