/* Body */
body {
    margin:0px;
    font-family:Arial, Verdana, sans-serif;
    font-weight:100;
    background-color:antiquewhite;
}


/* Navigation */
nav {
    margin:0;
    width:100%;
}

nav ul {
    background-color: pink;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size:20px;
    letter-spacing:3.5px;
    text-transform:uppercase;
    margin:0px; 
    height:70px;
    list-style:none;
    display: flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    width:97.4%;
}

nav a{
    text-decoration:none;
}

nav a:link, nav a:visited {
    color:black;
}

nav a:hover, nav a:active {
    color:palevioletred;
}

/* Sections */

main {
    margin:20px;
}

h1, h2, h3 {
    font-family: 'times new roman', courier, serif;
}

h1 {
    text-align:center;
}

h2 {
    color:palevioletred;
}

p, ul, ol{
    font-size:14px;
}

img {
    margin-left:35px;
}

/* Button (link) */

section a {
    display:block;
    width:fit-content;
    margin:20px auto;
    padding:10px 20px;
    background-color:palevioletred;
    border-radius:15px;
    align-items:center;
}

    section a:link, section a:visited {
    color:black;
    text-decoration:none;
}

section a:hover, section a:active {
    color:rgb(253, 226, 230);
}