/*
================================================================
Customization Options
================================================================
Uncomment any of the following rules to override the default styles.
These options are loaded after the main stylesheet, so they will take precedence.
*/

/* --- FONT FAMILY OPTIONS --- */

/* -- Main Body Font -- */

/* Uncomment to set the main body font to a serif typeface */
/*
body {
  font-family: 'Playfair Display', serif;
}
*/

/* Uncomment to set the main body font to a sans-serif typeface (default) */
/*
body {
  font-family: 'Inter', sans-serif;
}
*/

/* -- Headline Font -- */

/* Uncomment to set the headline font to a serif typeface */
/*
.headline {
  font-family: 'Playfair Display', serif;
}
*/

/* Uncomment to set the headline font to a sans-serif typeface (default) */
/*
.headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
}
*/

/* --- HEADLINE SECTION OPTIONS --- */

/*
Uncomment to make the headline a full-screen hero section.
- It uses a placeholder background image from placehold.co.
  Replace the URL with your own image.
- The overlay color and opacity can be adjusted in the ::before rule.
*/
/*
#page-header {
  --hero-bg-image: url('/pawel-czerwinski-dgJT71cXlC4-unsplash.jpg');
  margin-top: -80px;
  height: 100vh;
  min-height: 600px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 6rem; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  color: #f5f5f4;
}
#page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(30, 35, 40, 0.5);
  z-index: 1;
}
#page-header .container {
  position: relative;
  z-index: 2;
}
#page-header .items-end {
  border-bottom-color: rgba(245, 245, 244, 0.5);
}
*/
/* --- TEXT MASK HEADLINE OPTION --- */

/*
Uncomment to turn the full-screen headline into a text mask.
- This requires the "HEADLINE SECTION OPTIONS" above to be active.
- The background image from the #page-header will show through the text.
- The #page-header::before overlay becomes the mask color.
*/
/*
#page-header .headline {
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
*/


/* *** */
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap");
* {
  box-sizing: border-box;
}

.wrapper {
  max-width: 80%;
  margin: 50px auto;
}

.terminal__banner {
  background-color: #dbdbdb;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 7px 10px;
}
.terminal__circle {
  border-radius: 100%;
  height: 15px;
  width: 15px;
  display: inline-block;
  margin-right: 5px;
  align-self: center;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.terminal__circle::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  top: -1px;
  font-size: 90%;
}
.terminal__circle.red {
  background-color: #ee5f5b;
  text-align: center;
}
.terminal__circle.red:hover::after {
  content: "×";
}
.terminal__circle.yellow {
  background-color: #f8be45;
}
.terminal__circle.yellow:hover::after {
  content: "−";
}
.terminal__circle.green {
  background-color: #5dc94c;
  text-align: center;
}
.terminal__circle.green::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  font-size: 70%;
}
.terminal__circle.green:hover::before {
  content: "⊠";
}
.terminal__body {
  height: 350px;
  background-color: #000;
  padding-top: 7px;
}
.terminal__text {
  padding-left: 10px;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  vertical-align: middle;
  display: inline-block;
  user-select: none;
}
.terminal__cursor {
  vertical-align: middle;
  display: inline-block;
  height: 20px;
  width: 10px;
  background-color: rgba(225, 225, 225, 0.7);
  animation: cursor 0.5s forwards infinite ease-in-out alternate;
}

@keyframes cursor {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}