@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*,
::before,
::after {
    box-sizing: border-box;
    font-family: 'Noto Sans';
    font-size: 12px;
    margin: 0;
    padding: 0;
    color: black;
}


body {
    background: #fff;
    padding: auto;
}


h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    text-decoration: underline;
}

b {
    font-size: 2rem;
}

p {
    font-size: 1.25rem;
    text-align: center;
}

h2 {
    font-size: 1.75rem;
    text-align: center;
    text-decoration: underline;
}

.home-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-message {
    height: 15vh;
}

.key {
    display: flex;
    height: 40vh;
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.explaination {
    height: 15vh;
}



hr {
    width: 80vw;
    color: black;
}

footer {
    position: relative;
    top: 5vh;
}

.triage-1 {
    background-color: #37826d33;
}

.triage-2 {
    background-color: #37826d66;
}

.triage-3 {
    background-color: #37826d99;
}

.triage-4 {
    background-color: #37826dCC;
}

.triage-5 {
    background-color: #37826d;
}

.triage-6 {
    background-color: black;
}

.triage-6 td,
.triage-4 td,
.triage-5 td,
.triage-3 td {
    color: #f2f2f2;
}


table {
    width: 40vw;
    height: 20vh;
    margin-bottom: 20px;
    margin-top: 10px;
    border: black 1px solid;
    border-radius: 5px;
}

td {
    text-align: center;
}

th {
    background-color: #37826d;
    color: #f2f2f2;
}

.btn {
    color: #f2f2f2;
    background-color: #37826d;
    width: 160px;
    height: 25px;
    text-align: center;
    margin: 10px auto;
    border: black 1px solid;
    border-radius: 5px;
}

.btn:hover {
    cursor: pointer;
    transform: scale(1.1);
}