@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  background-color: #B0C4DE;
}

header h1 {
  background: #b10505;
  background: linear-gradient(to bottom, #ffffff 0%, #ce1414 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
}

/* Background styles */
body {
  background-color: #310e0e;
  background-image:
    radial-gradient(at 47% 33%, hsl(0.00, 100%, 38%) 0, transparent 59%),
    radial-gradient(at 82% 65%, hsl(359.21, 79%, 19%) 0, transparent 55%);
}

/* Glassmorphism card effect */
.card {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

main {
  margin-block: 1rem;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 23.4375rem;
  max-width: 23.4375rem;
  max-height: 60%;
  border-radius: .6rem;
  padding: 2rem;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "social";
}

img {
  width: 100%;
  max-width: 23.4375rem;
  height: 100%;
  padding: .75rem;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: .4rem;
  padding: .3rem;
  max-width: 23.4375rem;
  height: 100%;
  margin-inline: .4rem;
}

.social p {
  font-size: x-large;
  font-weight: bold;
  text-align: center;
  color: white;
}

/**/
.black {
  background-color: hsla(210, 100%, 0%, 0.80);
}

.blue {
  background-color: hsla(210, 100%, 28%, 0.80);
}

.red {
  background-color: hsla(0, 100%, 28%, 0.80);
}

/**/

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

a:active {
  padding: .3rem;
}

footer {
  color: white;
}