@import url('https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,100..700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
  color: #ddd;
  font-size: 1.1em;
  line-height: 1.5;
  font-family: Helvetica, Arial, sans-serif;
  --color-orange: #ff4a08;
  --color-yellow: #faaa00;
  --color-magenta: #f92a82;
  --color-blue: midnightblue;
  }

body {
  background: #111;
  }




/* ------------------------------
Utilities
------------------------------ */

.wrap {
  width: 100%;
  }

.flex {
  display: flex;
  }

  .flex-wrap { flex-wrap: wrap; }

.square {
  aspect-ratio: 1;
  }

.img-fit {
  display: block;
  width: 100%;
  height: auto;
  }






/* ------------------------------
Typography
------------------------------ */

h1, h2, h3 {
  font-family: "Montagu Slab", serif;
  font-optical-sizing: auto;
  font-style: normal;
  }

h1 {
  font-weight: 400;
  color: #fff;
  font-size: 7vw;
  text-align: center;
  line-height: .9;
  padding: 1rem;
  }

h2 {
  color: #fff;
  font-weight: 500;
  margin: 4rem 0 2rem 0;
  font-size: 10vw;
  line-height: 1.1;
  }

  @media (min-width: 30rem) { h2 { font-size: 7vw }}
  @media (min-width: 60rem) { h2 { font-size: 4vw }}

  .square h2 {
    text-align: center;
    }

h3 {
  color: var(--color-yellow);
  margin: 1.5rem 0 1rem 0;
  }

  h3:first-child { margin-top: 0 }

p {
  margin-bottom: 1rem;
  }

:last-child {
  margin-bottom: 0;
}


a {
  color: var(--color-orange);
  text-decoration-thickness: 2px;
  text-decoration-color: darkred;
  transition: all .25s ease;
  text-underline-offset: 4px;
  }

  a:hover {
    color: var(--color-magenta);
    }


/* ------------------------------
faces
------------------------------ */

.fuckbuddy-faces { justify-content: center; }

.fuckbuddy-faces .square { width: 100%; }
.fuckbuddy-faces .face { height: 8rem; }

  @media (min-width: 30rem) { 

    .fuckbuddy-faces .square { width: 50%; } 
    .fuckbuddy-faces .face { height: auto; }

  }
  @media (min-width: 60rem) { .fuckbuddy-faces .square { width: 33.33333% } }




.face {
  background-size: cover;
  background-repeat: no-repeat;
  }

.face:nth-child(3n+1) {
  background-image: url(img/FuckBuddyOrange.svg);
  background-color: var(--color-orange);
  }

.face:nth-child(3n+2) {
  background-image: url(img/FuckBuddyYellow.svg);
  background-color: var(--color-yellow);
  }

.face:nth-child(3n+3) {
  background-image: url(img/FuckBuddyMagenta.svg);
  background-color: var(--color-magenta);
  }


@media (min-width: 60rem) {

  .face:nth-child(1),
  .face:nth-child(5),
  .face:nth-child(9) {
    background-image: url(img/FuckBuddyOrange.svg);
    background-color: var(--color-orange);
    }

  .face:nth-child(2),
  .face:nth-child(6),
  .face:nth-child(7) {
    background-image: url(img/FuckBuddyYellow.svg);
    background-color: var(--color-yellow);
    }

  .face:nth-child(3),
  .face:nth-child(4),
  .face:nth-child(8) {
    background-image: url(img/FuckBuddyMagenta.svg);
    background-color: var(--color-magenta);
    }

}




/* ------------------------------
content
------------------------------ */

.content {
  margin: 5rem 7%;
  }

  @media (min-width: 30rem) { .content { margin: 5rem 20% } }
  @media (min-width: 60rem) { .content { margin: 5rem 33.3333% } }


.warning {
  background-color: var(--color-orange);
  font-size: 2rem;
  padding: 1.2rem;
  color: #fff;
  line-height: 1.1;
  }

.about {
  border: 2px solid var(--color-orange);
  padding: 1.2rem;
  }


.caption {
  text-align: center;
  color: var(--color-magenta);
  font-size: .75rem;
  }











::-moz-selection {
  background: var(--color-yellow);
  color: #111;
  text-shadow: none;
  }

::selection {
  background: var(--color-yellow);
  color: #111;
  text-shadow: none;
  }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  }


