@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  --container-bg-color: #eeeeee;
}
body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

body {
  background-color: var(--container-bg-color);
}

.container {
  margin: 0px 0 0 0;
  text-align: center;
  background-color: var(--container-bg-color);
  padding: 10px;
}

.profile-name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-top: 8px;
}
.profile-name--txt {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.bio--txt {
  font-weight: 600;
  font-size: 15px;
}

#verified-check-mark--img {
  width: 22px;
  height: auto;
  margin-bottom: 4px;
}

.cross-color {
  color: #ff0000;
}

.profile-section {
  margin-bottom: 30px;
}

.profile-picture {
  border-radius: 50%;
  width: 111px;
  border: 2px solid #eeeeee;
}

.buttons-section {
  margin-bottom: 50px;
}

.button {
  display: block;
  width: 85%;
  margin: 10px auto;
  padding: 20px 10px;
  text-decoration: none;
  border: 3px solid black;
  font-size: 17px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 1);
  transition: background-color 0.3s;
  margin-bottom: 37px;
  font-weight: bold;
  color: black;
}

#unlock {
  background-color: #fb87ff;
}
#unlock:hover {
  background-color: #e958ee;
}

#get-software {
  background-color: #43e5ff;
}
#get-software:hover {
  background-color: #1ed4f0;
}

#visit-blog {
  background-color: #feb444;
}
#visit-blog:hover {
  background-color: #eea12d;
}

#paste-buddy {
  background-color: #d3d4ff;
}

#paste-buddy:hover {
  background-color: #a7b4fc;
}

#watch-sing {
  background-color: #44fe8e;
}

#watch-sing:hover {
  background-color: #1ceb6f;
}

#shop-gear {
  background-color: #ff9c9c;
}
#shop-gear:hover {
  background-color: #f37676;
}

/*************** FOOTER ***************/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  color: #212121;
  font-size: 15px;
  font-weight: bold;
  margin: 0 10px;
}

#love-your-neighbor {
  background: #f00039;
  background: linear-gradient(to right, #f00039 0%, #2b2b2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-links {
  display: flex;
  align-items: center;
}

#linkedin--img {
  margin-top: 4px;
}

#facebook-icon {
  margin-top: 4px;
  width: 18px;
  opacity: 0.55;
}

#youtube--img {
  margin-top: 5px;
}

#linkedin--img {
  height: 16px;
  opacity: 0.55;
}

#youtube--img {
  width: 22px;
  opacity: 0.55;
}

#lock--img {
  width: 20px;
  vertical-align: middle;
}

.btn-one img {
  margin-right: 8px;
}

#linkedin--img:hover {
  opacity: 0.8;
}

#facebook-icon:hover {
  opacity: 0.8;
}

#youtube--img:hover {
  opacity: 1;
}

.social-link {
  color: #333;
  text-decoration: none;
  margin: 0 7px;
  /* background-color: #1ceb6f; */
}

/*  */
@media screen and (min-width: 414px) {
  .bio--txt {
    font-size: 18px;
  }
}

/* Adjustments for screens wider than 640px (e.g., tablets) */
@media screen and (min-width: 641px) {
  html {
    height: 100%;
    background: url(/images/background.jpeg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

  body {
    margin-top: 50px;
    background-color: transparent;
  }

  .profile-picture {
    width: 136px;
  }

  .button {
    font-size: 20px;
    width: 80%;
  }
  .container {
    max-width: 470px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 10px 18px 0 rgba(0, 0, 0, 0.4);
  }

  .profile-section {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .profile-name--txt {
    font-size: 26px;
  }
  .bio--txt {
    font-size: 18px;
  }

  footer {
    margin: 0 25px;
    font-size: 15.5px;
  }

  #linkedin--img {
    height: 18px;
  }

  #youtube--img {
    width: 24px;
  }
}

/* Adjustments for screens wider than 768px (e.g., desktops) */
@media screen and (min-width: 769px) {
}
