html {
  background-color: #201f22;
  font-family: "Roboto", sans-serif;
  color: #bbbbbb;
  background-image: url("https://images.unsplash.com/photo-1530089711124-9ca31fb9e863");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 100px black;
  height: 100%;
  width: 100%;
}

h1 {
  letter-spacing: 1rem;
  font-size: 2rem;
  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 {
  border-radius: 40px;
  width: 450px;
  height:400px;
  transition: transform border-radius 0.2s;
} 

img:hover {
  transform: scale(1.05);
  border-radius: 10px;
}

button {
  border-radius: 15px;
  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: 50vh;
  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(162, 162, 193, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.warning {
  font-size: 12px;
  font-style: italic;
  color: #bbb;
}

.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 .2s;
}

.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;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  padding-top: 2.75rem;
}

.tech {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 400px;
  height: 150px;
  align-items: center;
}

i {
  font-size: 40px;
  margin: 6px;
}
