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

body {
    font-family: Arial, sans-serif;
    background: #f1f1f1;
    color: #10202f;
}

.app {
    display: flex;
    justify-content: center; 
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
}

.content {
    width: 500px;
    min-height: 400px;
    min-width: 250px;
    border-radius: 20px;
    background: white;
    align-self: center;
    padding: 14px;
    margin-top: -100px;
}

.content__heading {
    padding: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.content__tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 40px;
}

.content__tab {
    font-size: 18px;
    min-width: 125px;
    width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 5px;
    line-height: 30px;
    border-radius: 20px;
    margin-left: 5px;
}

.content__intro {
    display: flex;
    padding: 8px;
    margin-top: 14px;
    font-size: 17px;
    justify-content: center;
}

.content__intro span {
    max-width: 400px;
    text-align: center;
    line-height: 1.4;








}

.content__tab.--active {
    background: #d6e6ff;
}

.content__detail.--active {
    display: flex;
    flex-direction: column;
}

.content__detail {
    display: none;
}

.content__detail-element img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    align-self: center;
    filter: grayscale(25%);







}

.content__detail-element {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 12px 0;
    justify-content: center;
}

.content__detail-text p {
    padding: 3px 0;
    font-size: 17px;
}

a {
    text-decoration: none !important;
    color: #10202f !important;
}

.content-detail {
    display: none;
}

/*footer {
    display: flex;
    width: 100%;
    height: 50px;
    background: white;
}*/


