@import '/assets/bootstrap/css/bootstrap.min.css';
@import '/assets/css/members.css';
@import url("https://rsms.me/inter/inter.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

html {
    height: 100vh;
}

body {
    padding-top: 65px;
    font-family: Inter, sans-serif; !important;
    word-wrap: break-word;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

:root {
    font-family: Inter, sans-serif; !important;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
}
.content-container {
  max-width: 1200px;
  margin: 20px auto 40px auto;
  padding: 10px 25px 0px 25px;
  align-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 15px 30px; 
}
.blog {
  min-width: 80%;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.flex-container-intro {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.flex-container-pfp {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-item-intro-0 {
    flex-grow: 1;
    max-width: 50%;
    min-width: 250px;
    padding-bottom: 15px;
}
.flex-item-intro-1 {
    flex-grow: 3;
    max-width: 50%;
    min-width: 250px;
    text-align: left;
}
.pfp {
  vertical-align: middle;
  min-width: 200px;
  max-width: 50%;
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 .03em #a6a6a6, /* We'll put a grey line here in case the photo has a white background */
    0 0 0 .2em #ffffff, /* AAAAAA WOKE, SCARY */
    0 0 0 .4em #f5a9b8,
    0 0 0 .6em #5bcefa;
}
.uncenter {
    text-align: left;
}
.floating-card {
    max-width: 1200px;
    display: flex;
    justify-content: center;
}
/* ======================= for media ======================= */
.screenshot {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 20px;
  padding-top: 30px;
}
.screenshot img {
  width: 300px;
  height: auto;
  border: 5px solid white;
  box-shadow: 0px 0px 2px 5px rgb(217,217,217,1);
  align-self: center;
}
.screenshot img:hover {
  width: 300px;
  height: auto;
  border: 5px solid white;
  box-shadow: 0px 0px 5px 7px rgb(128, 128, 128,1);
  align-self: center;
}
.screenshot video {
  width: 300px;
  height: auto;
  border: 5px solid white;
  box-shadow: 0px 0px 2px 5px rgb(217,217,217,1);
  align-self: center;
}
.photo {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 20px;
}
.photo img {
  border: 5px solid white;
  box-shadow: 0px 0px 2px 5px rgb(217,217,217,1);
  align-self: center;
}
.sublist {
  max-width: 20vw;
}
.bcontent {
    margin-top: 10px;
}
.card-img-container {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-desc-container {
  background-color: #cccccc;
  padding-left: 5px;
  padding-right: 5px;
}
.card {
  max-width: 800px;
}

@media only screen and (max-width: 767px) {
  .card {
    width: auto;
    max-width: 300px;
  }
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 20px auto;
  padding: 0 20px 20px 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-controls {
  text-align: right;
  line-height: 2.5rem;
}

.modal-close {
  color: #00008b;
  font-size: 32px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}
