body {
    padding: 0;
    margin: 0;
    background-color: #F6F8F9;
}

main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 10px;
}

main img {
    display: inline-block;
    width: 100%;
    max-width: 900px;
    height: auto;
}

h2 {
    font-weight: 700;
    margin-bottom: 0px;
}

p, a {
    font-weight: normal;
}

a {
    font-size: 20px;
    margin: 35px 0 10px 0;
    position: relative;
    text-decoration: none;
    color: #187745;
}

a:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: 0;
    transition: width 500ms;
    background: #187745;
}

a:hover:before {
    width: 0;
}

main * {
    text-align: center;
    font-family: Raleway;
}