* {
    margin: 0;
    padding: 0;
}

nav {
    width: 96%;
    height: fit-content;
    background-color: cornflowerblue;
}

nav {
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 0 10px black;
    border: 2px solid black;
    border-radius: 10px;
    position: sticky;
    top: 0;
}

nav a {
    padding: 10px 20px;
    float: right;
    text-decoration: none;
    color: white;
    border-left: 2px solid black;
}

nav header {
    padding: 5px 25px;
    float: left;
    color: black;
    font-weight: bolder;
    border-right: 2px solid black;
    font-size: 20px;
    text-shadow: 0 0 10px wheat;
}

nav a:hover {
    background-color: tomato;
    color: black;
    border-radius: 10px;
}

.word {
    padding: 40px;
    margin: 30px;
    background-color: lightblue;
}

.word h1 {
    font-family: cursive;
    font-size: 40px;
}

.word p {
    font-size: 25px;
    font-family: cursive;
}

.word a {
    font-size: 20px;
    border: 2px solid black;
    background-color: orangered;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-radius: 5px;
    text-overflow: initial;
}

.word img {
    float: right;
    border-radius: 10px;
}

.heading-2 {
    text-align: center;
    font-size: 40px;
    font-family: monospace;
}

section {
    text-align: center;
}

section div h2 {
    font-size: 30px;
    font-weight: bolder;
    font-family: sans-serif;
}

section div p {
    font-size: 20px;
    font-family: cursive;
}

section div {
    display: inline-block;
    width: 300px;
    height: 200px;
    padding: 20px;
    margin: 10px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: lightblue;
}

.mid {
    text-align: center;
    font-family: cursive;
    background-color: burlywood;
}

.mid h1 {
    margin-top: 30px;
    padding: 20px;
    font-size: 40px;
}

.mid p {
    padding: 20px;
    font-size: 20px;
}

.footer {
    padding: 20px;
    margin: 15px;
    text-align: center;
    background-color: lightgrey;
}

.footer h4 {
    margin-top: 10px;
}

.footer i {
    margin-top: 5px;
}