*{
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(253, 253, 253);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
}

.back{
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    display: flex;
    flex-direction: row-reverse;
    gap: 2px;
    align-items: center;
    justify-content: center;
    color: rgba(75, 126, 236, 0.7);
    font-size: 18px;
}

.next svg{
    width: 22px;
    height: 22px;
    display: inline-block;
    stroke-width: 2;
    vertical-align: middle;
}

.next {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    justify-content: center;
    color: rgba(75, 126, 236, 0.7);
    font-size: 18px;
}

.back svg {
    width: 22px;
    height: 22px;
    display: inline-block;
    stroke-width: 2;
    vertical-align: middle;
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
}

.back:hover{
    cursor: pointer;
    color: rgba(75, 126, 236, 1);
}

.next:hover {
    cursor: pointer;
    color: rgba(75, 126, 236, 1);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 70vh;
    width: 100%;
    overflow-y: auto;
    padding-bottom: 40px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: rgba(75, 126, 236, 0.7);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(75, 126, 236, 1);
}

table{
    width: 90vw;
    font-size: 12px;
    border-collapse: collapse;
    color: rgba(75, 126, 236, 0.7);
    max-height: 70vh;
}

td{ 
    text-align: justify;
    padding: 5px;
}

.about {
    padding-top: 20px;
    text-align: center;
    color: rgba(75, 126, 236, 0.7);
    font-size: 18px;
}

h4 {
    font: italic 18px Arial, Helvetica, sans-serif;
    color: rgba(75, 126, 236, 0.7);
    font-weight: 100;
}

.hero {
    width: 100%;
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    width: fit-content;
    text-align: center;
    color: rgba(75, 126, 236, 0.7);
    font-size: 40px;
}