@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Chakra Petch", serif;
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(80,0,125);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(125, 50, 170);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(175, 50, 255);
}
body{
    background-color: rgb(5,0,15);
    color: white;
    display: flex;
    flex-direction: column;
    height: 100vh;
    transition: height ease 0.3s;
}
footer{
    background-color: rgba(40,0,80,0.25);
    padding: 5px;
    margin: 0 10px 10px 10px;
    border-radius: 10px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
footer h3 a{
    color: white;
    text-decoration: none;
    transition: color ease 0.3s, text-decoration ease 0.3s;
    text-decoration: underline solid transparent;
}
footer h3 a:hover{
    color: rgb(150,100,255);
    cursor: pointer;
    text-decoration: underline solid rgb(150,100,255);
}
@media(max-width: 768px){
    body{
        height: 89vh;
    }
}