/* Fonts */

.old-standard-tt-regular {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}

.old-standard-tt-bold {
  font-family: "Old Standard TT", serif;
  font-weight: 700;
  font-style: normal;
}

.old-standard-tt-regular-italic {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: italic;
}

/* Main */

body {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3)), url("img/pexels-elijahsad-3473569.jpg");
  background-size: cover;
  background-color: black;
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity (0-1) and color */
  pointer-events: none;
  z-index: 1;
}

.overall-section {
  background-color: rgb(5, 37, 30);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 50vw;
  margin: auto;
  margin-top: 50px;
  border: 1px solid rgb(250, 240, 240);
  border-radius: 10px;
  height: auto;
  position: relative;
  z-index: 2;
}

.name-title {
  width: 100%;
  margin-top: 60px;
  font-size: 3rem;
  color: white;
  letter-spacing: 3px;
}

.line-break {
  width: 40vw;
  height: 1px;
  background-color: rgb(250, 240, 240);
  margin: 20px;
}

/* Link Items */

.link-item-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
}

.link-item {
  text-align: left;
  display: block;
  width: 40vw;
  height: auto;
  font-size: 1rem;
  color: white;
  margin: 20px;
  margin-left: 80px;
  padding: 2%;
}

.link-title {
  margin: 0 0 4px 0;
  letter-spacing: 2px;
}

.link {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  letter-spacing: 3px;
  font-weight: lighter;
}

.link-item p {
  margin: 0;
  font-size: 1.2rem;
}
