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

/* Reset default margin & padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-family: 'Outfit', Geneva, Verdana, sans-serif;
  padding: 0.2em;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: rgb(151, 2, 114);
}

a:hover {
  color: black;
}

body {
  background: url('images/i_heart_fisting.png') no-repeat center center/contain antiquewhite;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered content container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.425);
}

/* Content box */
.logobox {
  text-align: center;
  padding: 0em;
}

.iconbox {
  text-align: center;
  padding: 0em;
}

.footer {
  text-align: center;
  padding: 1em 0em;
  background-color: white;
  width: 100%;
  border-top: solid black 4px;
}

/* logo image */
.logo {
  width: 22em;
  /*height: 8em;*/
  object-fit:contain;
}

.icon {
  max-width: 1.5em;
}

/* Social icons list */
.social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0 1em 1.5em 1em;
  gap: 0.5em;
}

.social-icons li {
  margin: 0 0.5em;
  line-height: 2em;
  min-width: 6em;
  padding: 0.4em;
  background-color: white;
  border: solid rgb(0, 0, 0) 4px;
  transition: background-color 0.5s;
}

.social-icons a {
  color: rgb(0, 0, 0);
  font-size: 5em;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons li:hover {
  background-color: rgb(151, 2, 114);
}

.social-icons a:hover {
  color: rgb(255, 255, 255); /* Change color on hover  */
} 

@media screen and (max-width: 500px) {

			.social-icons a {
        font-size: 3em;
      }

      .social-icons {
        flex-direction: column;
        margin: 1em;
      }

      .logo {
        width: 16em;
        object-fit:contain;
      }

    }