html {
  background-color: #201f22;
  font-family: "Roboto", sans-serif;
  color: #bbbbbb;
  background-image: url("https://images.unsplash.com/photo-1530089711124-9ca31fb9e863");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  width: 100%;
  box-shadow: inset 0 0 100px black;
}

@media only screen and (max-width: 1450px) {
  html {
    box-shadow: inset 0 0 0px black;
  }
}

@media only screen and (max-width: 600px) {
  html {
    box-shadow: inset 0 0 0px black;
  }

  h1 {
    font-size: 1.5rem;
  }
}

h1 {
  letter-spacing: 1rem;
  font-weight: 50;
}

h2 {
  font-weight: 200;
  font-size: 1rem;
  font-style: italic;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: white;
}

table {
  padding-left: 3rem;
}

td {
  padding-left: 5rem;
  padding-bottom: 1.5rem;
  text-align: right;
}

th {
  color: #ddd;
  padding-bottom: 1.5rem;
  text-align: left;
}

p {
  font-size: 14px;
  inline-size: 400px;
  overflow-wrap: break-word;
  text-align: left;
}

a:link {
  color: #5798fb;
  text-decoration: none;
}

a:visited {
  color: #5798fb;
}

a:hover {
  color: #5798fb;
}

a:active {
  color: #5798fb;
}

img {
  max-width: 70px;
  border-radius: 50%;
  float: left;
  padding: 20px;
}

button {
  border-radius: 10px;
  border: 1px solid green;
  height: 10%;
  width: 50%;
  color: white;
  font-weight: bold;
  background: linear-gradient(
    0deg,
    rgba(17, 200, 75, 1) 0%,
    rgba(61, 186, 118, 1) 100%
  );
}

button:hover {
  background: linear-gradient(
    0deg,
    rgba(12, 156, 57, 1) 0%,
    rgba(39, 121, 76, 1) 100%
  );
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background: #8b8b8b;
}

::-webkit-scrollbar-thumb:hover {
  background: #ababab;
}

i {
  transition: transform 0.2s;
}

i:hover {
  transform: translateY(-5px) scale(1.1);
  filter: invert(40%);
}

.card {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.075em;
  max-width: 275px;
  color: #949494;
}

.projects {
  display: flex;
  height: 55vh;
  flex-direction: column;
  gap: 1.25rem;
  overflow: auto;
  padding: 10px;
}

.project {
  display: flex;
  text-align: left;
  font-size: 12px;
  backdrop-filter: blur(16px) saturate(-180%);
  -webkit-backdrop-filter: blur(16px) saturate(-180%);
  background-color: rgba(172, 172, 203, 0.2);
  border: 1px solid rgba(180, 180, 255, 0.2);
  border-radius: 12px;
  transition: transform 0.25s;
}

.project:hover {
  transform: scale(1.033);
}

.warning {
  font-size: 12px;
  font-style: italic;
  color: #fe4d55;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  padding-top: 2.75rem;
}

.box {
  text-align: center;
  margin: 1rem;
  padding: 2rem;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  transition: transform 0.25s;
}

.box:hover {
  transform: scale(1.01);
}

.header {
  margin-top: 4rem;
  text-align: center;
}

.highlight {
  letter-spacing: 0.5rem;
  background-color: #000;
  padding: 5px;
  padding-left: 15px;
  padding-right: 10px;
}

.banner {
  font-weight: 100;
  font-size: 2rem;
  letter-spacing: 0rem;
  color: white;
}

.blue {
  background-color: #5798fb;
  color: black;
}

.transparent {
  background-color: rgba(17, 25, 40, 0.75);
}

.divider {
  border-top: 1px solid rgba(150, 150, 150, 1);
  padding-bottom: 1rem;
}

.tech {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 400px;
  height: 150px;
  align-items: center;
}

i {
  font-size: 40px;
  margin: 6px;
}

/* The Modal (background) */
.modal {
  display: none;
  justify-content: center;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 30%;
  top: 30%;
  width: 40%; /* Full width */
  height: 30%; /* Full height */

  text-align: center;
  margin: 1rem;
  padding: 1rem;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

/* Modal Content */
.modal-content {
  margin: auto;
  padding: 20px;
  width: 90%;
}
.close:hover,
.close:focus {
  color: #6e6e6e;
  text-decoration: none;
  cursor: pointer;
}
/* The Close Button */
.close {
  color: #bbb;
  font-size: 20px;
  font-weight: bold;
}

.modal-container {
  display: none;
  z-index: 1;
  position: fixed;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);
}
