* {
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    background-color: #fff3fc;
    color: saddlebrown;
    font-size: 15px;
}

p{
    line-height: 18px;
}

a:link,
a:visited {
    color: rgb(138, 61, 138);
    text-decoration: none;
}

a:hover {
    color: rgb(77, 33, 109);
    text-decoration: none;
}

a:active {
    color: indigo;
    text-decoration: none;
}

nav {
    list-style-type: square;
    height: 30px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    display: inline-flex;
    padding: 2px;
    margin: 2px;
    gap: 20px;

}

nav ul li {
    display: inline-block;
    height: 25px;
    width: 70px;
    background-color: rgb(238, 176, 233);
    padding-left: 1px;
    padding-top: 4px;
    border-radius: 30px;
}

hr {
    color: rgb(138, 61, 138);
}


ul {
    list-style-type: none;
    padding: 2px;
}

h1 {
    font-size: 30px;
    color: rgb(138, 61, 138);
    background-color: rgb(238, 176, 233);
    height: 50px;
    padding-top: 5px;
    text-align: center;
    margin-top: 0px;
}

h2 {
    font-size: 25px;
    color: rgb(196, 71, 175);
}

h3 {
    font-size: 20px;
}

strong {
    font-size: 17px;
    color: rgb(152, 37, 131);
}

em {
    color: rgb(228, 48, 159);
}

ol {
    padding-left: 20px;
}

main {
    padding: 0 12px 20px;
}


footer p {
    color: rgb(138, 61, 138);
}


figure {
    margin: 12px 0px 18px
}

img {
    display: block;
}