* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 100vh;

    background: #ffffff;
    color: #303030;

    font-family:
        Arial,
        Tahoma,
        Verdana,
        sans-serif;
}

.team {
    width: 100%;
    max-width: 600px;

    padding: 30px;

    text-align: center;
}

.team h1 {
    margin: 0 0 35px;

    font-size: 14px;
    font-weight: 1000;
    letter-spacing: 2px;

    color: #777;
}

.team h2 {
    margin: 0 0 8px;

    font-size: 42px;
    line-height: 1;

    letter-spacing: -2px;
    font-weight: 1000;

    color: #303030;
}

.team p {
    margin: 8px 0;

    color: #666;

    font-size: 14px;
    line-height: 1.6;
}

.team h2 + p {
    color: #62b985;
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 8px 0;
}

.team p:last-of-type {
    max-width: 500px;
    margin: 18px auto 0;
}

.team-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.team-links a {
    display: inline-block;
    padding: 10px 16px;

    color: #303030;
    background: #ffffff;

    border: 2px solid #303030;

    text-decoration: none;

    font-size: 11px;
    font-weight: 1000;

    transition:
        transform .1s ease,
        background .1s ease,
        color .1s ease;
}

.team-links a:hover {
    color: #ffffff;
    background: #347fb6;

    transform: translateY(-2px);
}

.team-links a:active {
    transform: translateY(1px);
}

.team h2 + p {
    margin-bottom: 8px;
}

.team h2:nth-of-type(2) {
    margin-top: 45px;
}