body{background: black;}

h3, h2, h1, a, p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}


.container{
  display: flex;
  justify-content: center;
}

.logo{
  width: 480px;
}

.hero {
            background: black;
            color: white;
            padding: 60px 0;
        }
        .article-card {
            transition: transform 0.2s;
        }
        .article-card:hover {
            transform: translateY(-5px);
        }