.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
  color: #fff;
  padding: 0 20px;
}

.home_content {
  text-align: center;
  max-width: 600px;
}

#name_heading {
  font-family: "Inter", sans-serif;
  font-size: 100px;
  padding-top: 60px;
  background-image: url(../resources/images/heading_bg.png);
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

#intro {
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

#degree {
  font-family: "Roboto Mono", monospace;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.socials_buttons_list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
}

.socials_buttons_list li {
  margin: 0 10px;
}

.socials_buttons_list li > a {
  font-size: 1rem;
  border: white 0.15em solid;
  text-align: center;
  padding: 0.5em 1.25em;
  color: white;
  display: inline-block;
  border-radius: 8px;
  font-weight: bold;
  text-shadow: none;
  box-shadow: inset 0 0 0.5em 0 white, 0 0 0.5em 0 white;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.socials_buttons_list li > a:hover,
.socials_buttons_list li > a:focus {
  background-color: white;
  color: black;
  box-shadow: 0 0 1em 0 white;
  text-shadow: none;
}
