html {
    font-family: sans-serif;
}

header {
    border-radius: 15px;

    background-color: rgb(255, 115, 0);
    display: flex;
    justify-content: center;
    color: green;
    margin: 10px;
}

nav {
    border-radius: 15px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: yellow;
    height: 40px;
}

nav a {
    text-decoration: none;
    margin: 0 15px;
    color: #00c800f1;
}

nav a:hover {
    color: #ff0000;
}

.container {
    background-color: #abc1ff;
    border-radius: 30px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 0 10px rgb(157, 157, 157);
}

.container h2 {
    color: #ff0000;
}

footer {
    border-radius: 15px;

    margin: 10px;
    background-color: brown;
    color: white;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
}

p {
    color: #ff0000;
}