/* remove all default margins and paddings */
* {
    padding: 0;
    margin: 0;
}

header {
    height: 150px;
    background-color:paleturquoise;
}

header h1 {
    text-align: center;
    padding-top: 50px;
    font-size: 50px;
    font-style: italic;
    /* text-shadow: 1px 1px 15px red; */
}

header h2 {
    text-align: left;
    font-size:25px;
    font-style: italic;
    font-display: red;
}

header h3 {
    text-align: left;
    font-size: 25px;
    font-style: italic;
    font-display: red;
}

}
nav {
    height: 80px;
    background-color: green;
}

nav ul {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    padding: 0px 40px;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(105, 235, 80);
    font-size: 15px;
    transition: 0.5s;
}

nav ul li:hover a {
    color: white;
    text-shadow: 1px 1px 15px red;
}

main {
    background-color: rgba(215, 219, 221, 0.911);
    min-height: calc(100vh - 150px - 80px - 50px);
    padding: 0 40px 50px 40px;
}

main p {
    font-size: 23px;
}

footer {
    height: 60px;
    background-color: rgb(96, 240, 39);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

footer p {
    text-align: center;
    padding-top: 35px;
    color: rgb(92, 189, 206);
}

