@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg: #2e3440;
  --text-color: whitesmoke;
  --neon-blue: hsl(181, 63%, 55%);
  --neon-green: #2cff05;
  --font: 'Poppins', 'Roboto', sans-serif;
  --button-neon-color: #249fa1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-family: var(--font);
}

html {
  height: 100%;
}


body {
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

iframe {
  border: none;
  overflow: hidden;
  display: block;
  margin: auto;
}

.container {
  text-align: center;
  justify-content: center;
}

.social-links {
  padding-top: 25px;
  padding-bottom: 25px;

  display: grid;
  justify-content: center;
  min-width: 80%;
}

.button-link {
  text-decoration: none;
  display: grid;
}

/* Style for the big button */
.social-links button {
  display: flex;
  align-items: center;
    
  color: white;
  border: none;
  padding: 12px 26px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  outline: none;
}

.mail-button {
  background: var(--button-neon-color);
}

.mail-button:hover {
  background:  var(--neon-blue);
  transform: scale(1.05);
  transition: .3s;
}

.display-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1em;
}

.display-cards iframe {
  margin: 1em;
}

footer {
  background-color: #1245a3;
  margin-top: auto;
  padding: 3rem;
  width: 100%;
}

#redirect-links {
  display: flex;
  margin: 0;
}