/* style.css */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --dark-grey: #333333;
    --medium-grey: #636363;
    --light-grey: #eeeeee;
    --ash: #f4f4f4;
    --primary-color: #2b72fb;
    --white: white;
    --border: 1px solid var(--light-grey);
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--dark-grey);
    letter-spacing: -0.4px;
    padding: 0em;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
}

.btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
}

.icon {
    padding: 0.5rem;
    background-color: var(--light-grey);
    border-radius: 10px;
}

.logo {
    margin-right: 1.5rem;
}

tr:nth-child(even) {
    background-color: #014c9cf1;
    color: #fff;
    letter-spacing: 1px;
    font-style: italic;
    border: 2px solid #157be8f1;
}

tr:nth-child(odd) {
    background-color: #157be8f1;
    color: #fff;
    letter-spacing: 1px;
    font-style: italic;
    border: 2px solid #157be8f1;
}

th {
    border-left: 1px solid #fff;
}

.blink {
    animation: blinker 5s linear infinite;
    color: #00d5ff;
    font-family: sans-serif;
    font-weight: bold;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
}