/* ----------[ At-Rules ]---------- */

@font-face { /* Website's main font */
  font-family: "Inter";
  src: url("font-inter/Inter-VariableFont_opsz,wght.ttf");
}

@font-face { /* Used for <h> elements */
  font-family: "Montserrat";
  src: url("font-montserrat/Montserrat-VariableFont_wght.ttf");
}

/* ----------[ Global ]---------- */

body,html {
  background-color: #F4EBE1;
  box-sizing: border-box;
  color: #252524;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin: 0;
  user-select: none;
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  color: #252524;
  text-decoration: none;
}

h1 {
  font-family: "Montserrat";
  text-align: center;
}

/* ----------[ Header ]---------- */

div#header-container {
  align-items: center;
  background-color: #F7F1EA;
  box-shadow: 0 0.1rem 0.25rem #CCC3BB;
  display: flex;
  justify-content: space-between;
}

  div#header-left {
    flex: 1;
    text-align: center;
  }

    img#logo {
      width: 4.5rem;
    }

  div#header-middle {
    display: flex;
    flex: 3;
    justify-content: space-around;
  }

    div.menu-container {
      border-bottom: 0.1 rem solid rgba(0,0,0,0);
      display: flex;
      cursor: pointer;
    }
      div.menu-container:hover {
        border-color: #F91837;
        color: #F91837;
      }

      img.menu-icon {
        margin: -0.1rem 0.25rem 0 0;
        width: 1.5rem;
      }

  div#header-right {
    diplay: flex;
    flex: 1.25;
    margin-right: 1rem;
    text-align: right;
  }

    img.socialmedia-icon {
      cursor: pointer;
      width: 2.25rem;
    }
      img.socialmedia-icon:hover {
        transform: scale(0.90);
      }

/* ----------[  Body  ]---------- */

div#body-container {
  display: flex;
  height: 80vh;
  justify-content: space-around;
  margin-top: 1.25rem;
}

  div#body-left, div#body-right {
    background-color: #252524;
    border-radius: 1rem;
    box-shadow: 0 0 0.1rem 0.1rem #252524;
    color: #F3EFE9;
    flex: 0.75;
    font-size: 0.8rem;
    max-width: 15.5%;
  }

    div.friends {
      border-bottom: 0.1rem solid rgba(243, 239, 233, 0.25);
      cursor: pointer;
      font-size: 1.25rem;
      mask-image: linear-gradient(to right, transparent, white, white, white, transparent);
      padding: 2rem 0 1rem 2rem;
    }
      div.friends:hover {
        border-color: #F91837;
        color: #F91837;
      }

    h1#friends, h1#latestvideos {
      
    }

    h1.latestvideos-embed {
      max-width: 100%;
    }

    h1.latestvideos-title {
      border-bottom: 0.1rem solid rgba(243, 239, 233, 0.0);
      font-size: 1rem;
      mask-image: linear-gradient(to right, transparent, white, white, white, transparent);
    }
    h1.latestvideos-title a {
      color: #F3EFE9;
    }
      h1.latestvideos-title:hover, h1.latestvideos-title a:hover {
        color: #F91837;
      }

  div#body-middle {
    border-radius: 1rem;
    min-width: 65%;
    max-width: 65%;
    text-align: center;
    user-select: text;
  }

/* ----------[ Footer ]---------- */

  div#footer-left { }
  div#footer-middle { }
  div#footer-right { }

/* ----------[ home.html ]---------- */

div.home {
  background-color: #F7F1EA;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem #ccc3bb;
  margin-bottom: 1rem;
  width: 100%;
}
  div.home:hover, span.home:hover {
    box-shadow: 0 0.1rem 0.25rem #F91837; /*#252524;*/
  }

div#home-combine {
  display: flex;
  gap: 1rem;
}

  div.home-inner {
    padding: 1rem 2rem 1rem 2rem;
  }

    div.home-title-container {
      display: flex;    
    }

      img.banana-bulletpoint {
        height: 1rem;
        margin: 0.1rem 0.4rem 0 0;
        width: 1rem;
      }

      h1.home-title {
        color: #F91837;
        font-family: "Montserrat";
        margin: 0;
        font-weight: 600;
        text-align: left;
        font-size: 0.9rem;
      }

      h1.home-links {
        display: flex;
        width: 2rem;
      }

      h1.home-links img {
        width: 2rem;
      }

      img.affiliate-images {
        padding: 2rem;
        width: 20.5rem;
      }


