/* styles.css */

body,
h1,
p,
ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Georgia', serif;
    background-color: rgb(246, 247, 243);
    background-image: url('https://img.freepik.com/free-vector/hand-painted-watercolor-nature-background_23-2148941599.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    height: 100%;


}

section{
    background-color: aliceblue;
    line-height: 24px;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0px 70px 0px 70px;
    padding: 0px 20px 0px 20px;
    border-radius: 20px;
}

h1 {
    font-family: 'Apple Chancery', cursive;
    font-size: 60px;
    font-weight: normal;
    text-shadow: 1px 1px 5px #082b34;
    color: #2a3842;
    text-align: center;
    padding: 25px 20px;
}

h2 {
    font-family: 'Gill Sans', sans-serif;
    font-weight: normal;
}

h2:hover {
    color: #014a28;
    text-decoration-line: underline overline;
    text-shadow: rgb(234, 236, 224) 1px 0 10px;
}

p {
    line-height: 24px;
    background-color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    margin: 0px 70px 0px 70px;
    padding: 0px 20px 0px 20px;
    border-radius: 20px;
}

blockquote{
    text-align: center; 
    margin: 0 auto;
    font-style: italic;
    font-size: 30px;
    padding: 25px 20px;

}

h3{
    font-size: 14px;
    font-family: 'arial';
    font-weight: normal;
}

.fixed-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(244, 247, 241, 0.832); 
    background-size: cover;
    color: #333; 
    width: 200px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    
}


.custom-ul {
    list-style: none;
    padding: 0;
    font-family: 'Times New Roman', serif;
    font-size: 14px;
}
