body 
{
    font-family: 'Oswald';
    font-size: 20px;
    color: white;
    background-color: black;
    overflow: hidden;
    
    line-height: normal;
    height: 100vh;
    height: 100dvh;
}

h1 
{
    font-size: xx-large;
    font-weight: bold;
    margin-bottom: 2vh;
}

h2
{
    font-size: x-large;
    font-weight: bold;
    margin-bottom: 1vh;
}

h3
{
    font-size: larger;
    font-weight: bold;
    margin-bottom: 0.5vh;
}

p
{
    margin-bottom: 1vh;
}

b 
{
    font-weight: bold;
}

a 
{
    color: white;
    text-decoration: none;
    text-decoration: underline 0.15em rgba(255, 255, 255, 0);
    transition: text-decoration-color 400ms;
}

a:hover
{
    text-decoration-color: rgb(255, 255, 255);
}

input 
{
    box-sizing: border-box;
    color: white;   
    font-family: 'Oswald';
    font-size: 20px;
    border: 0;
    width: 100%;
    background-color: black;
    border-bottom: solid 0.15em rgba(255, 255, 255, 0);
    padding: 0.5vw 0.5vh 0.5vw 0.5vh;
}

textarea 
{
    box-sizing: border-box;
    color: white;
    font-family: 'Oswald';
    font-size: 20px;
    border: 0;
    width: 100%;
    background-color: black;
    border-bottom: solid 0.15em rgba(255, 255, 255, 0);
    padding: 0.5vw 0.5vh 0.5vw 0.5vh;
}

/* custom scrollbar */
::-webkit-scrollbar{
    width: 20px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: rgb(37, 126, 219);
  }

  * {
    scrollbar-width: thin;
    scrollbar-color: #257edb #ffffff;
  }

  li 
  {
    list-style-type: circle; 
    margin-left: 2vw;
  }
  

@media screen and (max-width: 768px) 
{
    body 
    {
        font-size: 12px;
    }

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

    ::-webkit-scrollbar-thumb   
    {
        border-radius: 12px;
    }
    ::-webkit-scrollbar-thumb 
    {
        border-radius: 12px;
    }
    input 
    {
        font-size: 12px;
    }
    textarea 
    {
        font-size: 12px;
    }
    

    h1 
    {
        font-size: 16px;
    }

    h2
    {
        font-size: 14px;
    }

    h3
    {
        font-size: 12px;
    }
}
