:root {
    font-family: Arial, Helvetica, sans-serif;
}


html {
    width: 100dvw;
    height: 100dvh;
    background-color: black;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    main {
        flex-direction: column;
        width: 90%;
    }

    tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    td {
        padding-bottom: 0px;
    }
}

main {
    display: flex;
    align-items: flex-start;
    gap: 72px;
}

table {
    border-collapse: collapse;
    width: max-content;
}

tr {
    vertical-align: top;
}

td {
    padding-bottom: 24px;
}

td:first-child {
    color: white;
    padding-right: 24px;
    white-space: nowrap;
}

td:last-child {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.heart {
    color: rgb(232, 91, 115);
}

a {
    color: #3e7bd1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    color: white;
    margin: 0;
    font-weight: 500;
    font-size: medium;
}
