@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Merriweather+Sans:wght@700&display=swap');

@import url('./vars.css');
@import url('./middle.css');
@import url('./link.css');

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: hsl(295, 61%, 10%);
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(295, 61%, 7%);
}

body
{
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 24px;

    background-color: hsl(295, 61%, 20%);
}

.title {
  margin: 30px 35px;
  
  font-size: 32px;
  font-weight: 700;
  font-family: 'Merriweather Sans', sans-serif;
  text-shadow: 0 0 5px var(--color-yellow);
}

.hr {
  width: clamp(180px, 40vw, 350px);
  margin: auto;
}

@media (width <= 500px) {
  .title {
    font-size: 24px;
  }
}
