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

body,
html {
  height: 100%;
  margin: 0;
}

.bg {
  /* The image used */
  background-image: url("../images/gijon_san_pedro.jpg");
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  /* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.main-text {
  font-family: "Dancing Script", cursive;
  font-size: 180px;
  color: #fff;
  line-height: 1.1;
  text-align: center;
}

@media screen and (min-width: 2560px) {
  .main-text {
    font-size: 250px;
  }
}

.media-icons {
  position: absolute;
  bottom: 3%;
  left: 3%;
  
  display: flex;
  align-items: center;
}

.icon {
  font-size: 32px; 
  color: white;
}

#service-now-icon {
  content: url("../images/servicenow_icon.png");
  height: 28px;
  width: 28px;
  margin-bottom: -4px;
  /* Other styles here */
  border-radius: 5px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-left: 8px;
  object-fit: contain;
}