h1 {
    color: white;
    background-color: crimson;
    text-align: center;
    font-size: 60px;
    font-family: cursive;
    margin: 50px;
    border: black solid 20px;
    border-radius: 50px;
}

address {
    text-align: center;
}

img {
    width: 50%;

}

nav {
    text-align: center;
    border: black solid 5px;
    margin: 20px;
    border-radius: 15px;
}

article>section>ul {
    list-style-type: disc;
}

nav>ul>li>a:visited {
    background-color: red;
}

nav>ul>li>a:link {
    background-color: green;
}

nav>ul>li>a:hover {
    background-color: blueviolet;
}

nav>ul>li>a:active {
    background-color: green;
}