/*styles */
/*week2 change：move page background color under "body"*/
body {
  margin: 0;
  padding: 0;
  background-color: #fcf3f3;
}
header {
    width: 30%;
    max-width: 400px;
    background-color: #984242;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;  
    position: fixed;
}
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin-top: 50px;
    gap: 40px;
}
header nav a:hover{
    transform: scale(1.2);
}
header nav a:active{
    text-decoration-line:underline;
}
.image1{
    height: auto;
    width: 75%;
    max-width:200px;
    border-radius: 50%;
}
main {
    margin-left: 30%;
    padding:30px;
    max-width: 900px;
}
h1{font-size: 80px;
    font-family:cursive;   
    color:#984242;
}
h2{font-size: 30px;
}
h3{font-size: 26px;}
p{font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 40px;
}


header nav a{
    color:white;
    text-decoration-line:none;
    font-size: 1.3em;
    font-style:normal;
}
a{color:#b04c4c;
text-transform: capitalize;
font-style: italic;
font-weight: 600;
}
.container{
    text-align:left;
}
.container1{
    display: flex;
   }
.box {
    padding:20px;
    max-height:fit-content;
    width: 30%;
    min-height: 100px;
    background-color:#fbf5ef;
    border-style:double;
    border-color: #984242;
}
.image {
    float: right;
    width: 100%;
    max-width: 600px;
    margin-left: 20px;
    margin-bottom: 20px;}

ul input:checked {
  accent-color: #c13039;
}
ul:has(input:checked) {
  border: 2px solid #c13039;
  transform:scale(1.1);
}
span.dropcap{font-size: 38px;
font-weight: bold;
color:#984242;
}