/*styles */
*{background-color:rgb(244, 234, 234);}
body {
  margin: 0;
  padding: 0;
  display: flex; 
  gap:30px;
}
header {
    width: 30%;
    max-width: 400px;
    background-color: #733434;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;  
    position: fixed;
}
header nav {
    color:transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    height: 100vh;
    margin-top: 40px;
    gap: 30px;
}
header nav a{
    color:white;
    background-color: transparent;
    text-decoration-line:none;
    font-size: large;
}
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:40px;
    width: 70%;
    max-width: 700px;
}
h1{font-size: 88px;   
}
h2{font-size: 30px;
    margin-top: 50px;
}
p{font-size: 18px;
    line-height: 1.25em;;
}

h3{margin-top: 50px;}