.hero {
    display: grid;
    height: 98vh;
    grid-template-columns: repeat(1, minmax(100px, 500px) );
    grid-template-rows: auto;
    justify-content: space-around;
    align-content: center;
}
.hero__content {
    text-align: center;
}
.hero__content .logo {
    width: 300px;
    max-width: 100%;
}

.inlineList {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}
.inlineList li {
    margin: 15px;
}
.social img {
    width: 30px;
}