@font-face {
    font-family: 'Inter';
    src: url('/Inter-VariableFont_opsz\,wght.ttf');
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: Inter;
}

button {
    border: none;
}

input {
    border-radius: 4px;
}

nav a,
nav p {
    text-decoration: none;
    color: white;
    transition: 0.2s;
    cursor: pointer;
    display: block;
    padding: 0.5rem;
}

nav li {
    list-style: none;
}

nav a:hover,
nav p:hover {
    color: rgb(255, 199, 95);
}

.button-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #1f2937 !important;
    color: white;
    text-decoration: none;
    text-align: center;
}

.button-link:hover {
    opacity: 0.9;
}

main input {
    border: 1px solid #9b9b9b;
    /* background-color: #eeeeee; */
    /* color: white; */
}

select {
    background-color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    color: white;
}