/* Body Styling */
body {
    background-color: #26A093;
    margin: 0px;
    font-family: Catamaran, Montserrat, Lora, sans-serif;
    font-size: 18px;
}

/* Header Styling */
header {
    background-color: #DD6D34;
    margin: 10px;
    height: 90px;
    border-radius: 5px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 250%;
    color: #FFFFFF;   
}

header img.logo {
    position: absolute;
    left: 40px;
    height: 90px;
}

nav ul {
    padding: 5px;
    list-style-type: none;
    text-align: center;
    background-color: #DD6034;
    margin: 10px;
    border-radius: 5px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #333;
}

.theme-description p {
    font-size: 1.4em;
    color: #555;
    margin-bottom: 15px;
}

main {
    padding: 20px;
}

.theme-section {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-image: url(pexels-steve-26146790.jpg);
}

.theme-section h2 {
    color: #4D1E4A;
    font-size: 2.6em;
    margin-bottom: 15px;
}

.craft-list {
    list-style-type: none;
    padding: 0;
}

.craft-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    
}

.craft-list li img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
}

.craft-list a {
    text-decoration: none;
    color: #ff6f61;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.craft-list a:hover {
    color: #333;
}

/* Footer Styling */
footer {
    background-color: #DD6D34;
    margin: 10px;
    height: 60px;
    border-radius: 5px;
    clear: both;
    color: #ECB172;
    text-align: center;
    padding: 15px;
    font-size: 90%;
}

footer ul {
    padding: 5px;
    list-style-type: none;
    text-align: center;
    margin: 10px;
    border-radius: 5px;
}

footer ul li {
    display: inline;
}

footer ul li a {
    text-decoration: none;
    font-family: Catamaran, Montserrat, Lora, sans-serif;
    padding: .2em 1em;
    color: #000;
    background-color: #DD6D34;
}

footer ul li a:hover {
    color: #ECB172;
    background-color: #23647D;
}
