@media (max-width: 600px){
 .wrap {
  width:90%; 
 }
}

body {
    background: linear-gradient(to right, #CFDEF3, #E0EAFC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    font-family: cursive, sans-serif;
    margin: 0;
}

.wrap {
    max-width: 800px;
    margin: auto;
}

.logo img {
    width: 200px;
    padding: 14px;
    border-radius: 25px;
    box-shadow: 0px 0px 10px 4px #283e51;
}

.logo {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 25px;
}

#lessons h1 {
    text-align: center;
    margin: 0;
    font-family: cursive;
    font-size: 30px;
    color: #483d8b;
    text-shadow: 0px 5px 10px #483d8b;
}

#lessons h1 span {
    font-size: 35px;
    text-decoration: underline;
    text-shadow: 0px 1px 2px #000;
    color: #00bfff;
    padding-right: 25px;
}

.lesson-list {
    display: flex;
    justify-content: center;
}

.lesson-list ul {
    list-style: none;
    padding: 0 10px;
    margin: 30px 0px 0px;
    background: linear-gradient(to right, #4b79a1, #283e51);
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 25px 10px #D8D8D8;
    box-shadow: 0px 0px 10px 4px #283e51;
    text-align: center;
    overflow-y: auto;
    height: 400px;
}

.lesson-list ul li {
    margin: 20px 10px;
}


 .lesson-list ul li a {
    text-decoration: none;
    font-size: 22px;
    color: #e0dfdc;
    letter-spacing: 0.1em;
    text-shadow: 0 5px 4px rgba(0,0,0,0.9), 7px 3px 7px rgba(206,89,55,0);
}

 .lesson-list h3 {
    margin-top: 10px;
    text-align:center;
    text-decoration: none;
    font-size: 23px;
    color: #f3e86b;
    letter-spacing: 0.1em;
    text-shadow: 0 5px 4px rgba(0,0,0,0.9), 7px 3px 7px rgba(206,89,55,0);
}

.lesson-list ul li a:hover{
    color: #ffa500;
    transition: 0.3s;
}

footer {
    margin-top: 60px;
}

footer p {
    text-align: center;
    font-size: 16px;
    text-shadow: 2px 3px 4px grey;
}

footer p span {
    font-family: monospace;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
}