@import url(./fonts.css);
@import url(./roots.css);
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
}

body{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    overflow-y: scroll;
    overflow-x: hidden;

    background-color: var(--bg-color);
    transition: .2s;
}

html{
    scroll-behavior: smooth;
}

button{
    cursor: pointer;
    border: 0;
}

input{
    color: #000000;
}

input[readonly] {
    background-color: #eee;
    color: #666;
    cursor: default;
}

hr{
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}