@import url('https://fonts.googleapis.com/css2?family=Modern+Antiqua&family=Public+Sans:wght@100..900&display=swap');

.modern-antiqua-regular {
    font-family: "Modern Antiqua", serif;
    font-weight: 400;
    font-style: normal;
}

.public-sans {
    font-family: "Public Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1,h2 {
font-family: "Modern Antiqua";
text-decoration: underline;
animation: textgradient 5s linear infinite;
}

h3 {
    font-size: 22px;
    font-family: "Modern Antiqua";
}

h4{
    font-size: 18px;
    font-family: "Modern Antiqua";
}

p {
    font-size: 17px;
    font-family: "Public Sans";
}

td {
    padding-right: 20px
}

a {
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

.icon {
    width: 32px;
}

.content {
    padding-left: 20px;
    padding-right: 20px;
}

.section .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s, opacity 0.2s;
    opacity: 0;
    transform: translateY(-20px);
}

.section.active .content {
    max-height: 800px;
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    background-color: antiquewhite;
    margin: 0;
    padding: 1em;
    cursor: pointer;
    user-select: none;
}

.spacer {
    height: 30px;
}

#divimage{
    margin-left: 80px;
    margin-top: 20px;
}


#box {
    padding: 10px 30px 10px 30px;
    width: 800px;
    min-height: 1000px;
    margin: auto;
    border: solid black 2px;
    border-radius: 20px;
    text-align: justify;
    background-color: antiquewhite;
}

#gridbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    width: 800px;
}

#tableinfo {
    width: 450px;
}

@keyframes textgradient {
    0% {
        text-decoration-color: #FF3B30;
    }

    20% {
        text-decoration-color: #FF6A00;
    }

    30% {
        text-decoration-color: #FF8C42;
    }

    40% {
        text-decoration-color: #00C853;
    }

    50% {
        text-decoration-color: #00E5A8;
    }

    60% {
        text-decoration-color: #00B8D9;
    }

    70% {
        text-decoration-color: #4D96FF;
    }

    80% {
        text-decoration-color: #7B61FF;
    }

    90% {
        text-decoration-color: #C77DFF;
    }

    100% {
        text-decoration-color: #FF3B30;
    }
}