*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

body {
  background-image: url("/assets/turtles.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  min-height: 100vh;
}

h2 {
  font-size: 2rem;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.5px);
  -webkit-backdrop-filter: blur(9.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* background: rgba(34, 40, 49, 0.68);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.6px);
  -webkit-backdrop-filter: blur(7.6px);
  border: 1px solid rgba(34, 40, 49, 0.3); */
}

.logo {
  max-width: 450px;
  min-width: 300px;
}

.profile-name {
  text-align: center;
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.links-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.links {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15.4px);
  -webkit-backdrop-filter: blur(15.4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* background: rgba(34, 40, 49, 0.68);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.6px);
  -webkit-backdrop-filter: blur(7.6px);
  border: 1px solid rgba(34, 40, 49, 0.3); */
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #d8b05d;
  font-weight: bolder;
  border-width: 2px;
  width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
}

a {
  text-decoration: none;
  color: white;
  transition: color 1s;
}

a:hover {
  color: #222831;
  background: #fff;
}
