:root{

    --white-color:#fff;
    --grey-color:#efefef;
    --pink-color: #ff4d6d;
    --dark-color:#222;
    --dark-color-2:#1B1B1B;
    --border-color:#eee;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
}
h2{
    font-size: 2.1rem;
    line-height: 1.5;
}
a{
    text-decoration: none;
}
ul{
    list-style-position: inside;
    line-height: 1.5;
}
nav ul{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
nav ul li{
    list-style-type: none;
}
table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
}
table th,
table td{
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    text-align: center;
}