@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: rgb(209, 209, 209);
}

h1 {
    text-align: center;
    background-color: blue;
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 5px;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75);
}

a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    margin-right: 25px;
    font-weight: 800;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.5);

}

a:hover {
    text-decoration: underline;
    color: blue;
}

nav {
    background-color: orange;
    padding: 5px;
    text-align: center;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.75);
    border-radius: 0px 0px 50px 50px;
}

main {
    background-color: white;
    text-indent: 20px;
    margin: 0em 1em;
    text-align: justify;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.75);
}

footer {
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
    padding: 5px;
    box-shadow: 0px -1px 7px rgba(0, 0, 0, 0.75);
    margin: 0em 1em;
    border-radius: 0px 0px 10px 10px;
}

header {
    margin-bottom: 1em;
}

h2,
p {
    margin: 10px;
}

footer>p {
    margin: 0;
}

article {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 10px 0px;
}