body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #1B3C53;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
}

.navbar ul {
  text-align: right;
}

.navbar ul li {
  display: inline-block;
  list-style: none;
  padding: 8px 12px;
}
.navbar ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #FAF7F3;
  transition: 0.5s;
}

.navbar ul li a:hover {
  color: #D9A299;
}

.main-home {
  padding: 2rem 5rem 2rem 5rem;
  display: flex;
  align-items: center;
  height: 70vh;
}

.home-container {
  margin-top: 50px;
  align-items: center;
  width: 600px;
}

.home-container h2 {
  color: #DCC5B2;
  font-family: monospace
}

.home-container h1 {
  font-size: 4rem;
  color: #D9A299;
}

.home-container p {
  color: #F0E4D3;
  font-size: 18px;
  line-height: 1.5;
}

.media-info {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.media-info img {
  width: 32px;
  transition: transform 0.4s ease;
}

.media-info img:hover {
  transform: scale(1.1);
}

.home-container button {
  border-radius: 25px;
  background-color: #D9A299;
  border: 1px solid #D9A299;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
  padding: 16px 24px;
  text-decoration: none;
  transition: all 200 ease-in-out;
}

.home-container button:hover {
  color: #1B3C53;
  background: #F0E4D3;
  cursor: pointer;
}

.download-cv {
  margin-right: 10px;
}

.contact-me {
  margin-left: 10px;
}

.my-photo img {
  display:block;
  margin: 0 auto;
  border-radius: 50%;
  margin-top: 75%;
  margin-left: 60%;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
  transition: all 150ms ease-in-out;
}

.my-photo img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

section {
  max-width: 900px;
  padding: 80px 20px;
  margin: 130px auto;
  border-radius: 30px;
  background: #748DAE;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.4);
}

section h1 {
  margin-top: 0;
  text-align: center;
  font-size: 3rem;
  color: #1B3C53;
}

h1 span {
  color: #415E72;
}

.about-section p {
  padding: 40px;
  font-size: 18px;
  line-height: 1.5;
}

strong a {
  text-decoration: none;
  color: #D9A299;
}

.education-container ul li {
  font-family: 'Times New Roman', Times, serif;
  font-size: 22px;
  text-align: center;
  list-style: none;
}

li span {
  font-size: 16px;
  color: #F0E4D3;
}

.tech-stack ul li {
  font-family: 'Fira Code', monospace;
  font-size: 26px;
  text-align: center;
  line-height: 1.6;
  list-style: none;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.logo-container img {
  width: 50px;
  height: auto;
  transition: transform o.3s ease;
}

.logo-container img:hover {
  transform: scale(1.1);
}

.project-box {
  max-width: 700px;
  margin: 30px auto;
  padding-top: 20px;
  border-radius: 15px;
  background: #1B3C53;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.4);
  padding-bottom: 20px;
}

.project-box h2 {
  margin-left: 90px;
  color: #F0E4D3;
  font-size: 2rem;
}

.project-box img {
  margin-left: 90px;
  width: 50%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.project-box img:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.project-box p {
  margin: 35px;
  line-height: 1.5;
  font-size: 18px;
}

.project-box a {
  text-decoration: none;
}

.project-box button {
  display: block;
  margin: 0 auto;
  border: 2px solid #DCC5B2;
  background: transparent;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 600;
  color: #DCC5B2;
  transition: 0.5s;
}

.project-box button:hover {
  background-color: #D9A299;
  color: #1B3C53;
  cursor: pointer;
}

.contact-box {
  margin: 30px;
  border-radius: 16px;
  background-color: #1B3C53;
  padding: 30px;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.4);;
}

label {
  font-size: 18px;
  color: #DCC5B2;
}

input[type=text], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DCC5B2;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  resize: vertical;
  margin-bottom: 10px;
}

input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #DCC5B2;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  resize: vertical;
  margin-bottom: 10px;
}

input[type=submit] {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  background: transparent;
  color: #DCC5B2;
  padding: 10px 15px;
  border: 2px solid #DCC5B2;
  border-radius: 10px;
}

input[type=submit]:hover {
  cursor: pointer;
  background-color: #D9A299;
  color: #1B3C53;
}

footer {
  padding: 22px;
  font-size: 14px;
  font-family: monospace;
  color: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}
