@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500&display=swap');

body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
}

h1 {
  font-weight: 100;
  font-size: 24px;
  margin: 0;
}

#wrapper {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#main-content {
  width: 100%;
  background-color: #FC1052;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.img {
  width: 60%;
  max-width: 200px;
  object-fit: cover;
  margin-bottom: 50px;
  pointer-events: none;
}

.bold {
  font-weight: 500;
}

.contact {
  color: #FC1052;
  font-weight: 300;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.contact:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  margin-bottom: -3px;
  background-color: #FC1052;
  visibility: hidden;
  transition: all 250ms ease-in-out;
}

.contact:hover:before {
  visibility: visible;
  width: 100%;
}

#footer {
  background-color: #FFFFFF;
  display: flex;
  width: 100vw;
  height: 100px;
  justify-content: center;
  align-items: center;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::selection {
  color: #FFFFFF;
  background-color: #FC1052;
}

@media only screen and (min-width: 576px) {
  #footer {
    height: 130px;
  }
}