body {
    -webkit-text-size-adjust: 100%;
}

.top {
    background-color: rgba(0, 110, 255, 0.773);
    background-size: cover;
    color: white;
    text-align: center;
}

.top p {
    font-size: 20px;
}

@media screen and (max-width: 450px) {
     h1 {
       font-size: 25px;
    }
    .top p {
        font-size: 14px;
    }    
}

@media screen and (max-width: 380px) {
       h1 {
         font-size: 22px; 
     }
      .top p {
         font-size: 12px;
     }
}

@media screen and (max-width: 355px) {
       h1 {
         font-size: 20px;
     }

}

 .day-schedule {
     max-width: 800px;
     margin: 0px auto;
}

h2 {
    color: red;
    padding-left: 50px;
}

.program {
    font-size: 1.5rem;
    box-sizing: border-box;
    margin-bottom: 0;
}

@media screen and (max-width: 480px) {
    .program tr td {
        width: 100%;
        display: block;
    }
}

tr {
    border-bottom: 2px solid gray;
}

.time {
    width: 120px;
    line-height: 300px;
}

@media screen and (max-width: 430px) {
    .time {
        line-height: 50px;
    }
}

.time span {
    background-color: pink;
    border-radius: 10%;
}

img {
    width: 250px;
    height: auto;
    margin-top: 50px;
}

.contents {
   display: inline-flex;
}

@media screen and (max-width: 370px) {
    .contents {
        font-size: 20px;
    }
}

footer {
    background-color: rgba(0, 110, 255, 0.773);
    margin-top: 0;
}

.link {
    text-align: center;
}

li {
    list-style: none;
    display: inline-flex;
}

@media screen and (max-width: 769px) {
    ul {
        padding-left: 0;
    }
    
    li {
        display: block;
        padding-top: 20px;
    }
}

li a {
    text-decoration: none;
    color: white;
    margin: 20px 30px;
}

footer p {
    text-align: right;
    font-family: 'Aref Ruqaa Ink', serif;
}

.s {
    opacity: 0;
}

.show {
    transition: all 2s;
    opacity: 1;
}