/* style.css */
body {
  display: flex;
  flex-direction: column;
  font-family: "Merriweather", serif;
  background: radial-gradient(
    263px at 100.2% 3%,
    rgb(12, 85, 141) 31.1%,
    rgb(205, 181, 93) 36.4%,
    rgb(244, 102, 90) 50.9%,
    rgb(199, 206, 187) 60.7%,
    rgb(249, 140, 69) 72.5%,
    rgb(12, 73, 116) 72.6%
  );
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 20px;
}

h1,
h2 {
  font-size: medium;
  color: #ffffff;
  font-family: "Merriweather", serif;
  margin-top: 15px;
}

h3 {
  text-decoration: underline;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

ul {
  list-style-type: square;
}

.resume-container {
  display: grid;
  max-width: fit-content;
  color: #8b9eab;
  position: relative;
  margin: 20px auto;
  padding: 20px 40px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

header .contact-info {
  margin: 10px auto;
  text-align: center;
}

header h1 {
  margin: 10px auto;
  text-align: center;
  color: #ffffff;
}

a:links {
  color: blue;
}

a:active {
  color: #cac7ba;
}

a:hover {
  color: #e1aa7e;
}

a:visited {
  color: #cac7ba;
}

.links-container {
  display: inline-block;
  flex-direction: row;
  max-width: fit-content;
  margin: 10px 60px;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 5px;
  justify-content: center;
  align-items: center;
}

.fa-links {
  display: flex;
  text-align: left;
  gap: 20px;
  padding: 10px;
  margin: 0 auto;
  text-decoration: none;
  font-size: medium;
}

@media (max-width: 960px) {
  h2,
  h3 {
    text-align: center;
    font-size: small;
  }
}
