/* reset */
body, p, ul, ol, form, input, button, select, h1, h2, h3, h4, h5, h6, dl, dt, dd, blockquote, address, pre{margin:0;padding:0;}
ul, ol{list-style:none;}
button{border:none;}
*{box-sizing:border-box;}


/* tags */
html {
    font-family: 'Poppins', sans-serif;
}
img{max-width:100%;}
p{margin-bottom:25px;}
p:last-child{margin-bottom:0;}


/* page */
.page-container {
    width: 100%;
    min-height: 100vh;
    background: #FFFFFF;
}

.main {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 50px 20px;
}

.main.active {
    display: flex;
}

.wrapper {
    max-width: 700px;
    width: 90%;
    text-align: center;
}

.title-1 {
    font-size: 25px;
    font-weight: 500;
    color: #151515;
    text-align: center;
    margin-bottom: 40px;
}

.title-2 {
    font-size: 22px;
    font-weight: 500;
    color: #151515;
    text-align: center;
    margin-bottom: 10px;
}

.people {
    margin-bottom: 35px;
}

.people:last-child {
    margin-bottom: 0;
}

.people li {
    margin-bottom: 10px;
}

.people a {
    color: #A4A4A4;
    text-decoration: none;
}