body {
    margin: 0;
    background-color: #efefef;
}


html {
  font-family: "Montserrat", sans-serif;
}

header {
    background-color: #364542;
    color: white;
    padding: 2em 3em;
}

header h1 {
    font-size: 4em;
    text-align: center;
}

.container {
    width: 400px;
    margin: 0 auto;
}

section article {
    transition: box-shadow 0.3s ease ;
    background-color: #fff;
    margin: 1rem 0;
    border-radius: 0.5rem;
    padding: 0.25rem 0;

    cursor: pointer;
}

section article:hover {
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.30);
}

section article h2, section article p {
    padding: 0 1rem;
}

footer {
    background-color: #222;
    padding: 3rem;
    color: #fff;    
}

footer section {
    float: right;
}

footer p {
    margin: 0;
}

footer a {
    transition: color 0.3s ease;
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: cornflowerblue;
}
/*
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
*/