@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/*
  style.css | Dylan | 301294233 | 09/29/2023

  This CSS is for handling global styles, 
  which means they are not related to any class.
*/

:root {
  --primary: #000000;
  --secondary: #eeeeee;
  --shade: #666666;
  --third: #333333;
  --light: #cccccc;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  border: none;
  outline: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 100vw;
  margin: 0;
  background-color: var(--primary);
  overflow-x: hidden;
}

section {
  flex-grow: 1;
  height: 100%;
  min-width: 100vw;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button, input, textarea {
  background-color: var(--secondary);
  padding: 0.5em 1.5em;
  border-radius: 10px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}