@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --main: #3a3a3a;
  --hover: #656565;
  --highlight: #5d3deb;
  --highlight-two: #aa63ec;
  --background: #e6e6e6;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--main);
  font-family: "Raleway", sans-serif;
  width: 98vw;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

main {
  width: 95vw;
  margin: 2vh 2vw;
}

a {
  text-decoration: none;
  color: var(--highlight);
}

a:hover {
  color: var(--highlight-two);
}

h2 {
  margin-top: 4vh;
}

hr {
  border: 2px solid var(--main);
}

.shadow {
  -webkit-box-shadow: 0px 5px 8px -4px rgba(0, 0, 0, 0.68);
  -moz-box-shadow: 0px 5px 8px -4px rgba(0, 0, 0, 0.68);
  box-shadow: 0px 5px 8px -4px rgba(0, 0, 0, 0.68);
}

.shell {
  width: 350px;
  max-width: 90vw;
  height: 50px;
  background-color: var(--main);
  color: #f7e3d6;
  border: 2px solid #f7e3d6;
  border-radius: 5px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy {
  min-height: 25px;
  min-width: 25px;
  border: 1px solid var(--hover);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
}

.copy > img {
  height: 13px;
  width: 13px;
}

.code {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

#zsh {
  width: 450px;
}

#env-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#script {
  width: max-content;
}

.code > p {
  display: inline;
  font-family: monospace;
  margin-right: 4px;
  color: var(--highlight-two);
  cursor: default;
}

.browser {
  width: max-content;
  height: 30px;
  background-color: var(--background);
  color: var(--main);
  border: 2px solid var(--main);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: default;
}

.image {
  border: 2px solid var(--main);
  border-radius: 5px;
  max-width: 90vw;
}

.banner {
  width: 90vw;
  max-width: 800px;
}

.gif {
  width: 600px;
  border: 2px solid var(--highlight-two);
  background-color: #000000;
  padding: 5px;
}

.logos {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;

  max-width: 100vw;
}

#node {
  max-width: 15vw;
}

#node > img {
  width: 15vw;
}

#fly {
  max-width: 15vw;
}

#fly > img {
  width: 15vw;
}

#express {
  max-width: 15vw;
}

#express > img {
  width: 15vw;
}
