html {
  height: 100%;
}

body {
  min-height: 100%;
}

.name {
  font-size: 42px;
  line-height: 34px;
}

.desc {
  font-size: 18px;
}

.content {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(11, 11, 11);
  color: white;
  font-family: 'Roboto', sans-serif;
  gap: 20px;
}

.btns {
  display: flex;
  gap: 15px;
}

.btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  background-color: rgb(21, 21, 21);
  border: 1px solid rgb(172, 172, 172);
  border-radius: 4px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btns a.hover {
  background-color: rgb(42, 42, 42);
}
