:root {
    --primary-color: #38A3A5;
    --secondary-color: #BFCBC2;
    --text-color: #22577A;
    --off-white: #F4F2F3;
}

html {
    width: 100%;
}

body {
    width: 100%;
    background-color: var(--off-white);
}

main {
    position: absolute;
    border-radius: 10px;
    background-color: var(--secondary-color);
    padding-bottom: 50px;
    top: 50%;
    transform: translatey(-50%);
    box-shadow: 0 0 10px 1px var(--secondary-color);

}

.presentation {
    padding: 10px;
    margin: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

table,
th,
td {
    border: 2px solid var(--primary-color);
    border-collapse: collapse;
    background-color: var(--off-white);
}

table {
    width: 70%;
    margin: auto;
}

td,
th {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    padding: 5px;
    color: var(--text-color);
    padding-left: 10px;
}

td a {
    font-size: small;
    color: var(--text-color);
}

td a:hover {
    text-decoration: none;
}

p {
    color: var(--text-color);
    text-align: center;
}

p a {
    color: var(--text-color)
}

p a:hover {
    color: var(--off-white);
    text-decoration: none;
}





@media only screen and (min-width: 600px) {
    main {
        max-width: 600px;
        margin: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    table {
        min-height: 500px;
    }

    p {
        max-width: 450px;
        margin: auto;
    }

}