@charset "utf-8";

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    color: black;
    font-family: Noto Sans;
    text-align: justify;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 600;
    font-size: 1.25rem;
}

h2 {
    font-weight: normal;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 450;
}

h3 {
    margin-top: 1rem;
    font-size: 0.75rem;
}

.top-bar {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar h1 {
    color: white;
    font-size: 2rem;
}

.back {
    text-align: center;
    padding-top: 1rem;
    width: 100%;
    height: auto;
    padding-bottom: 1rem;
}

.button-container {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
}

button {
    background: transparent;
    border: 1px solid black;
    color: black;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: black;
    color: white;
}

a {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: springgreen;
    transition: color 0.5s ease;
    text-decoration: underline;
}

a:visited {
    color: darkblue;
    text-decoration: none;
}

p{
    text-align: center;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.right {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 20%;
    margin-left: 80%;
    margin-top: 10%;
    z-index: 2;
    background-color: rgba(255,255,255,0);
    box-sizing: border-box;
    height: 100%;
    border-radius: 32px;
}

.left {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 55%;
    margin-left: none;
    margin-right: 47.5%;
    margin-top: 40%;
    z-index: 2;
    background-color: rgba(255,255,255,0);
    box-sizing: border-box;
    height: 52%;
    border-radius: 32px;
}

table {
    width: 95%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    padding: none;
}

td {
    vertical-align: top;
    font-size: 30px;
}

.td1, .td2{
    width: 50%;
}

.blank {
    width: 100%;
    height: 2rem;
    margin-bottom: 2rem;
}