* {
  padding: 0;
  margin: 0;
  font-family: roboto;
  color: #fff;
  box-sizing: border-box;
}

body {
  background-color: #070606;
}

#resume {
  width: 100%;
  height: auto;
  font-size: large;
}

#resume > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0px 20px;
}

#resume > h1 {
  text-align: center;
  font-family: fantasy;
  font-size: 2.6em;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 3px 3px 3px #e2aeae;
}

.resume-sections {
  background-color: #eef2ff;
  padding: 40px 20px;
  width: 380px;
  margin: 40px auto;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
@media (min-width: 800px) and (max-width: 1200px) {
  .resume-sections {
    width: 45vw;
  }
}
@media (max-width: 800px) {
  .resume-sections {
    width: 80vw !important;
  }
}

.resume-sections h2 {
  color: #4f46e5;
  margin-bottom: 16px;
}

.resume-sections p {
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.5;
}

.resume-button {
  display: inline-block;
  background-color: #6366f1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.resume-button:hover {
  background-color: #4f46e5;
}
