/* Reset margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Signika", serif;
  background: #d8efff;
    color: #101e44;
}

/* Main container centers content */
.container {
  text-align: center;
}

/* Logo style */
.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Social media buttons container */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

/* Social button style */
.social-btn {
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: background-color 0.3s;
  color: #101e44;
  box-shadow: 0 2px 5px rgba(16, 30, 68, 0.2);
  background: #FFF;
  border: 3px solid #101e44;
}

/* Icon style inside button */
.social-icon {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  transition: fill 0.3s;
}

/* Mouse-over effect */
.social-btn:hover {
  background-color: #FFFFFF;
  color: #f0544f;
  border: 3px solid #f0544f;
}