@font-face {
  font-family: "Spartan";
  src: url("../fonts/spartan-400.ttf") format("truetype");
  font-display: fallback;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Spartan";
  src: url("../fonts/spartan-700.ttf") format("truetype");
  font-display: fallback;
  font-style: normal;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 93.75%;
}

body {
  display: table;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: "Spartan", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page-shell {
  display: table-cell;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 32px 20px;
  vertical-align: middle;
}

.profile {
  width: 100%;
  text-align: center;
}

.profile h1 {
  margin: 0 0 12px;
  color: #000000;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
}

.profile p {
  margin: 0 0 20px;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.social-links {
  font-size: 0;
  line-height: 0;
  text-align: center;
  gap: 5px;
}

.social-link {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: 2.5px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-link:hover {
  opacity: 0.9;
  transform: scale(0.96);
}

.social-link:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 5px;
}

.social-mail {
  background: #ea4335;
}

.social-linkedin {
  background: #0077b5;
}

.social-telegram {
  background: #2ca5e0;
}

.social-github {
  background: #333333;
}

.social-drive {
  background: #69727d;
}

.social-stormboost {
  background: #0069ff;
}

.icon-svg,
.stormboost-mark {
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

@media (max-width: 560px) {
  .profile h1 {
    font-size: 40px;
  }

  .profile p {
    font-size: 17px;
  }
}
