* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body {
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

header {
    /* background: linear-gradient(159deg, rgba(0,0,128,1) 0%, rgba(9,9,121,1) 58%, rgba(255,215,0,1) 100%); */
    background: linear-gradient(159deg, rgba(0,0,8,1) 0%, rgba(0,0,74,1) 61%, rgba(255,215,0,1) 100%);
    text-align: center;
    color: #fff;
    height: 33vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

header h1 {
    color: #ffd700;
    font-size: 72px;
    font-family: Montserrat, Helvetica, sans-serif !important;
    font-weight: 100;
    text-transform: capitalize;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 100;
}

img {
    width: 100%;
    height: 100%;
}

input {
    padding: .5rem;
    font-size: 18px;
    border-radius: 10px;
    border: #727171 1px solid;
}

input:focus {
    outline: #a1bef0 1px solid;
  }

button {
    font-size: 2rem;
    color: #fff;
    background: rgb(18, 18, 18);
    padding: .5rem;
    border-radius: 6px;
    border: 0;
}

button:hover {
    cursor: pointer;
    background: #434343;
}

.divider {
    margin: auto;
    border-top: #d68400 2px solid;
    width: 30%;
    margin-bottom: 2rem;
}

/* layout  */

.grid-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* sections */

section h1 {
    font-size: 72px;
    text-align: center;
    color: #01011c;
    margin: 1rem 0;
}

/* VALUES  */

.photo {
    width: 100%;
}

.panel  {
    padding: 2rem;
}

.panel h2 {
    margin: 1rem 0;
}

/* PEOPLE  */

.people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.person {
    padding: 2rem;
}

.person .name {
    text-align: center;
    padding: 1rem 0;
}

/* CONTACT  */

.contact-card {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
}

.contact-card * {
    margin: 1rem 0;
}

@media (max-width: 770px) {
    .grid-col-2 {
        display: flex;
        flex-direction: column;
    }

    .people-grid {
        display: flex;
        flex-direction: column;
    }

    .people-grid .person .person-img {
        width: 80%;
        margin: auto;
    }

    button {
        font-size: 1rem;
    }
}

@media (max-width: 450px) {
    section h1 {
        font-size: 2rem;
    }

    button {
        font-size: .75rem;
    }

    header h1 {
        font-size: 2rem;
    }

    header h2 {
        font-size: 1rem;
    }
}