* {
    font-family: 'Kanit', 'sans-serif';
}

h1 {
    display: flex;
    justify-content: center;
}

.header {
    background-color: #EB5353;
    color: #F9D923;
}

.container-activities {
    display: flex;
    justify-content: center;
    background-color: #36AE7C;
    padding: 20vh;
    float: left;
    margin-left: 13vh;
    width: fit-content;
    height: min-content;
    border: black solid;
    margin-bottom: none;
}

.container-jokes {
    display: flex;
    justify-content: center;
    background-color: #36AE7C;
    float: right;
    padding: 20vh;
    margin-right: 13vh;
    width: fit-content;
    height: fit-content;
    border: black solid;
    margin-bottom: none;
}

h2 {
    display: flex;
    justify-content: center;
    padding-top: 5vh;
    padding-bottom: 1vh;
    font-size: 6vh;
}

.content-container {
    margin-top: 6vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

#random-activity {
    list-style: none;
}

body {
    background-color: #187498;
}

.hidden{
    display: none;
}

footer {
    position: fixed;
    display: flex;
    justify-content: center;
    bottom: 0;
    width: 100%;
    height: 60px;
}

#clear-btn {
    background-color: #EB5353;
    color: #F9D923;
    border: #187498;
    border-width: 5vh;
    font-size: large;
    border-radius: 12%;
    height: 5vh;
    width: 10vh;
}

.popup {
    width: 600px;
    background-color: #F9D923;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%) scale(0.1);
    text-align: center;
    padding: 5px;
    color: black;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
    margin: none;
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, 50%) scale(1.3);
}

#joke-close {
    margin: 5px;
}

tr, td {
    padding: 20px;
}