html {
    font-family: "Comic Sans MS";
    font-size: 15pt;
    background-image: linear-gradient(210deg, antiquewhite, chocolate);
}

body {
    margin: 50px auto;
    background-color: floralwhite;
    max-width: 1200px;
    border-radius: 50px;
    border: 3px solid;
}

h1 {
    font-size: 48pt;
    margin-bottom: 0;
    text-align: center;
    margin: 60px 0px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: transparent;
    background-clip: text;
}

h2 {
    font-size: 32pt;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 20pt;
    text-decoration: underline;
}

img {
    max-width: 500px;
    border: 3px solid;
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

article, ul {
    margin: 30px auto 30px auto;
    box-shadow: 4px 4px 12px 5px;
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 800px;
}

article:hover, ul:hover {
    box-shadow: 6px 6px 16px 8px;
}

article {   
    padding: 30px;
}

ul {  
    padding: 30px 60px;   
}

li {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

li:hover {
    background-color: rgba(222, 184, 135, 0.3);
    transform: translateX(5px);
}

li:hover a { 
    text-decoration: none;
}

p {
    font-size: 15pt;
    line-height: 1.6;
    color: #333;
}

a {
    color: #8B4513;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
}

a:hover {
    color: #D2691E;
    transform: translateY(-2px);
}

a.info, li a {
    display: block;
}

footer {
    margin: 50px;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #D2691E;
}