body {
    background-color: #000;
    color: #eee;
    font-family: Montserrat, sans-serif;
    min-height: 100vh;
    overflow-y: auto;
    margin: 0
}

a {
    color: yellow
}

main {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 16px 48px
}

#hero {
    margin: 24px auto 12px;
    width: 100%;
    text-align: center
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

#hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px
}

#hero img {
    height: 120px;
    margin-top: auto;
    margin-bottom: auto
}

.subtitle {
    text-align: center;
    color: #bbb;
    margin: 8px 0 0
}

.contact {
    text-align: center;
    color: #bbb;
    margin: 8px 0 0
}

.section {
    margin-top: 28px
}

.section h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 12px 4px
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #171717;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 16px;
    color: #eee;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform 50ms ease
}

.link-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: yellow
}

.link-item span {
    font-weight: 600
}

.link-item:hover {
    background: #1f1f1f;
    border-color: yellow
}

.link-item:active {
    transform: translateY(1px)
}

@media only screen and (max-width:600px) {
    #hero {
        width: 100%;
        margin-top: 16px
    }

    #hero h1 {
        font-size: 40px
    }

    #hero img {
        height: 80px
    }
}
