*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  font-family: 'Ubuntu', sans-serif;
}
:root{
  --text: #efefef;
  --light: #38383a;
  --dark: #252527;
  --navigation: #1a1a1d;
  --darkest: #131316;
  --maincolor: #37d3d3;
  --secondmaincolor: #E45647;
}
body{
  background-color: var(--darkest);
  scroll-behavior: smooth;
  color: var(--text);
  min-height: 100vh;
  margin-top: 80px;
}
main{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.snap-container{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.snap-section{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
::-webkit-scrollbar{
  width: 0.8em;
}
::-webkit-scrollbar-track{
  background: var(--darkest);
}
::-webkit-scrollbar-thumb{
  background: var(--dark);
  border-radius: 15px;
  transition: 0.3s;
}
::-webkit-scrollbar-thumb:hover{
  background: var(--light);
}