@font-face{
    font-family: "ZH-CN";
    src: url(/assets/font/zh-cn.ttf);
}

/*GENERAL TAGS*/

html, body{
    height: 100%;
    width: 100%;
    margin: 0px;
    
}

header{
    background: rgb(99,198,212);
    background: linear-gradient(0deg, rgba(99,198,212,1) 0%, rgba(48,95,140,1) 66%);
    padding-left: 30px;
    padding-right: 30px;
}

main{
    padding: 10px 30px 20px 30px;
    border-top: 1px solid gray;
}

section{
    font-family: Georgia, Arial, sans-serif;
}

footer{
    margin-top: 40px;
    min-height: 50px;
    width: 100%;
    background: rgba(0,0,0,0.4);
    align-self: flex-end;
    border-top: solid 1px gray;
    text-align: center;
}

ul{
    margin: 0px;
    list-style: none;
}

/*IDENTIFIED BLOCKS*/

div#wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0px;
    background: url(/assets/img/background.png);
    background-size: cover;
    background-position: center;
}

div#card-container{
    background-color: white;
    box-shadow: 8px 8px 10px black;
}

div#card-header-top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

div#picture-container{
    height: 120px;
    min-height: 120px;
    width: 120px;
    min-width: 120px;
    margin: 20px auto;
    border: solid 3px white;
    border-radius: 50%;
    overflow: hidden;
}

div#title-container{
    width: 90%;
    text-align: center;
    border-bottom: solid 1px #CCFF66;
    margin-bottom: 20px;
}

div#picture-container img{
    height: 100%;
    width: 100%;
}

/*TEXTS*/

h1{
    height: 50px;
    margin: 0;
    font-family: "ZH-CN", Georgia, Arial, sans-serif;
    font-weight: 100;
    word-break: keep-all;
    white-space: nowrap;
    color: white;
}

h2{
    text-align: center;
    padding-bottom: 10px;
    font-family: Georgia, Arial, sans-serif;
}


p {
    color: white;
    font-family: Georgia, Arial, sans-serif;
}

strong{
    font-size: 20px;
    font-weight: bold;
}

p#sub-title{
    display: inline-block;
    border-radius: 25px;
    border: solid 1px gray;
    background-color: #435971;
    padding: 4px 10px;
    height: 20px;
    margin: 0px 25%;
    font-family: "ZH-CN", Georgia, Arial, sans-serif;
    word-break: keep-all;
    white-space: nowrap;
}

footer p{
    font-size: 18px;
    padding: 0 10px;
}

/*SOCIAL ICONS*/

ul#social-list{
    padding: 30px 0;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
}

ul#social-list li {
    display: inline-block;
    height: 80px;
    width: 80px;
    min-width: 80px;
    background-color: white;
}

.social-icons{
    width: 100%;
    border: solid 1px gray;
    background-color: #50596B;
}

a:hover img#ln-icon, a:active img#ln-icon{
    background-color: #2867B2;
}

a:hover img#gh-icon, a:active img#gh-icon{
    background-color: black;
}

a:hover img#oc-icon, a:active img#oc-icon{
    background-color: #7451EB;
}

ul#reasons-list{
    list-style-type: "\2705";
}

ul#reasons-list li {
    max-width: 500px;
    border-radius: 5px;
    border-top: transparent;
    margin-bottom: 20px;
    font-family: Georgia;
    text-indent: 20px;
}