@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("../assets/images/stars\ 1.gif") center center;
}

.content-box {
  background-color: #fae0e4;
  padding: 20px;
  width: 550px;
  height: 810px;
  text-align: center;
  border: 1px solid #370617;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 25px;
  display: flex;
  flex-direction: column;
}

.content-box .title {
  font-size: 25px;
  color: #370617;
}
.text-container::-webkit-scrollbar {
  display: none;
}

.text-container {
  scrollbar-width: none;
}

.header {
  flex-shrink: 0;
}

.navbar {
  display: flex;
  justify-content: center;
  margin-top: 12.5px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 12px;
}

.navbar ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.navbar li {
  margin-right: 7.5px;
}

.navbar a {
  text-decoration: none;
  color: inherit;
  transition: color 0.5s ease;
}

.navbar a:hover {
  color: #1b998b;
}

.navbar a.active-link {
  color: #1b998b;
}

.text-container {
  flex-grow: 1;
  overflow-y: auto;
  position: relative;
}

.text-container::-webkit-scrollbar {
  display: none;
}

.text-container {
  scrollbar-width: none;
}

/* Sections styling */
section {
  display: none;
  padding: 10px;
  padding-top: 0;
}

section.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* About me section styling */
.about-me-container .text {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 10px;
  text-indent: 30px;
  text-align: justify;
}

/* Projects section styling */
.projects-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 15px;
  padding-top: 10px;
  border: 1px dotted #370617;
  overflow-y: auto;
}

.projects-container ul {
  text-align: left;
  list-style: none;
  margin-bottom: 30px;
}

.projects-container .title {
  font-size: 16px;
  margin-bottom: 4px;
  background-color: #ffe5d9;
  display: inline-block;
  padding: 2px 4px;
}

.projects-container .url {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 8px;
}

.projects-container .text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.projects-container .made-with {
  font-size: 14px;
  font-weight: 400;
}

/* Contact section styling */
.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.contact-container .title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}

.contact-container .email {
  font-size: 14px;
  font-weight: 400;
}

.contact-container .email-gif {
  margin-top: 15px;
  width: 75%;
}

/* Selection color styles*/
::selection {
  background-color: #577783;
  color: white;
}

::-webkit-selection {
  background-color: #577783;
  color: white;
}
