* {
    margin: 0;
    border: 0;
}
.title {
    background-color: purple;
    font-family: "poppins";
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    justify-content: space-between;
}
body {
    background: grey;
}
.mm {
    display: inline-block;
}
nav {
    margin: 45px;
    gap: 27px;
}
h1 {
    text-align: left;
    font-size: 70px;
    margin-bottom: 0px;
}
.track {
    text-align: left;
    margin-top: 0px;
    font-size: 38px;
    margin-bottom: 0px;
}
.link {
    list-style: none;
    display: flex;
    gap: 20px;
}
a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 35px;
}
a:hover {
    transition: ease 3;
    color: red;
    text-decoration: underline;
    text-decoration-color: red;
}
h3 {
    text-align: center;
    font-size: 30px;
    align-content: center;
    background-color: black;
    color: white;
}

.history {
    overflow-y: auto;
    height: 320px;
}

table {
    border: 2px, solid, black;
    border-radius: 12px;
    align-items: center;
    margin: 0 auto;
    width: 80%;
}

th {
    background-color: purple;
    font-size: 27px;
    text-align: center;
    position: sticky;
    top: 0;
}

td {
    font-size: 25px;
    text-align: center;
}
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 17px 7px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    margin-top: 50px;
    margin-bottom: 6px;
}
@media (max-width: 750px) {
    h1 {
        font-size: 27px;
        margin-left: 4px;
    }
    .track {
        font-size: 17px;
    }
    .title {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .link {
        list-style: none;
        display: inline-block;
        gap: 15px;
    }
    nav {
        margin-top: 2px;
    }
    a {
        text-decoration: none;
        color: black;
        font-family: Times New Roman;
        font-size: 15px;
    }
    h3 {
        font-size: 22px;
    }
    table {
        width: 60%;
    }
    th {
        font-size: 16px;
    }
    td {
        font-size: 14px;
    }
}
