@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    font-size: 16px;
    font-family: 'Robotok, sans-serif';
    font-weight: normal;
    background: #f1f1f1;
    color: #0f141e;

}

.info-container {
    max-width: 600px;
    margin: auto;
    padding-top: 30px;
}

.info {
    margin-bottom: 5px;
    display: flex;
}

.avatar {
    /* width: 25%; */
    width: 200px;
    border-radius: 5px;
    box-shadow: 4px 4px 14px rgba(111, 111, 111, .75);

}

.info-text {
    width: 100%;
    margin-left: 4%;
}

.info-text p {
    font-style: italic;
    font-weight: bold;
    color: #86898f;

    margin: 0;
}
.info-text h4 {
    margin-bottom: 10px;
}

@media(max-width: 1200px) {
    .info {
        display: block;
        text-align: center;
    }
    .info-text {
        margin-left: 0;
    }

}

.card {
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.card h2 {
    margin-bottom: 10px;
}

.bg-yellow {
    background: #fff9dc;
}

.bg-red {
    background: #ffe5e5;
}

.bg-green {
    background: #e5ffe7;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: orange;
    font-size: 1.05em;
}

/* a:visited {
    color: #00f;
} */
a:active {
    color: #f00;
}

.btn {
    background: #111;
    padding: 15px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    opacity: .8;
    color: orange;
}

.list {
    padding: 0 20px;
}

.list li {
    color: #68898f;
    margin-bottom: 10px;
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.table {
    width: 100%;
}

.table td {
    padding-bottom: 10px;
}

table td:nth-child(2),
table td:nth-child(3) {
    color: #86898f;

}

.form h2 {
    text-align: center;
}
.form-row {
    margin-bottom: 10px;
    display: flex;

}
.form-row .form-group {
    /* display: inline-block;  */
    margin-right: 20px;
    width: 50%;
    /* width: calc(50% - 20px); */

}
.form-row .form-group:last-child {
    margin-right: 0;
}

@media(max-width: 1200px) {
    .form-row {
        display: block;
    }
    .form-row .form-group {
        width: 100%;
        margin-right: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #86898f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: transparent;
    border-bottom: 1px solid #ccc;
    color: #000;
    padding: 15px 0 10px;
    outline: 0;
    font-family: inherit;
}