:root {
  --font-size: 1em;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  background-image: url('images/GMS_SQ_Colour.png');
  background-size: auto 100vh;
  background-position: center;
  background-color: white;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  position: relative;
  width: 100vw;
  height: 0;
  padding-bottom: 100%; /* 1:1 aspect ratio */
}

h1 {
  color: black;
  font-size: 4em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

footer {
  font-family: 'Roboto', sans-serif; /* Use Roboto font */
  color: black;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.9em;
  text-align: left;
  background-color: rgba(255, 255, 255);
  border-radius: 10px; /* Rounded corners */
  padding: 10px; /* Some spacing inside the background */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.contact {
  margin: 0;
  padding-right: 0;
  padding-bottom: 5px;
  text-align: left;
}

.blog-link {
  color: #4285F4;
  /* Blue color for the link */
  text-decoration: none;
  /* Remove underline */
}

.blog-link:hover {
  text-decoration: underline;
  /* Underline on hover */
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 3em;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2em;
  }
}

/* Login with Google button styling */
.login-container {
  margin: 20px 0;
  text-align: center;
}

#google-login-btn {
  background-color: #4285F4;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

#google-login-btn:hover {
  background-color: #357ABD;
}