* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0)),
    url("background.png");
  background-size: cover;
  background-position: center;
  backgrund-attachment: fixed;
  background-repeat: no-repeat;
}
.email {
  margin-top: 0px;
  margin-bottom: 0px;
}

.connect-heading {
  margin-top: 140px;
  margin-bottom: 0;
}

.content {
  width: min(674px, 45%);
  margin: 0 auto;
  padding: 4vh 0;
  text-align: center;
}

.panel {
  padding: 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

h1 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.garden-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  border-radius: 8px;
  color: white;
  background: #6d3144;
  text-decoration: none;
  font-weight: bold;
}

.garden-button:hover {
  background: #91445c;
}

.connect-buttons {
  margin-top: 16px;
}

.connect-buttons a {
  display: inline-block;
  margin: 6px;
  padding: 10px 16px;
  border-radius: 7px;
  color: white;
  background: rgba(109, 49, 68, 0.9);
  text-decoration: none;
}

.connect-buttons a:hover,
.connect-buttons a:focus-visible {
  background: rgba(145, 68, 92, 0.95);
  color: white;
}

