*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: white;
}

html{
    scroll-behavior: smooth;
}

.btn-primary{
    background-color: #383838;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;

    &:hover{
        background-color: #505050;
    }
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
}

ul{
    list-style: none;
}

p{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}