@import url('https://fonts.googleapis.com/css2?family=Raleway&family=Roboto&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    color: #616897;
    background: #edf4f0;
}

.container {
    max-width: 750px;
    margin: auto;
    padding-top: 30px;
}

/* @media (max-width: 650px) {
    .container {
        font-size: 1rem;
        padding: 10px;
        text-align: left;
        }
    } */

.avatar {
    width: 300px;
    border-radius: 50%;
    box-shadow: 4px 4px 2px #d37ad6;
}

.info {
    margin-bottom: 20px;
    /* display: inline-flex;     */
}

.info-text {
    margin-left: 40px;
}

.info-text p {
    font-style: italic;
    font-weight: bold;
    font-size: 1.5em;
    word-spacing: 8px;
    letter-spacing: 1px;
    color: #cc7be5;
    margin: 0;
}

.info-text h4 {
    margin-bottom: 15px;
}

.card {
    /* border: 1px dashed blue; */
    border-radius: 30px;
    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:black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: magenta;
}

a:active {
    color: yellow;
}

/* a:visited {
    color: red;
} */

.btn {
    background: #111;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor:pointer;
    font-family: inherit;
}

.btn:hover {
    opacity: 0.8;
}

.list {
    padding: 0 20px;
}

.list li {
    color: #86898f;
    margin-bottom: 10px;
}

.table {
    width: 100%;
}

.table td {
    text-align: center;
    padding-bottom: 10px;
    border: 1px dotted orange;
}

.table td:hover {
    background: rgb(107, 205, 230);
}

.table td:nth-child(1) {
    color:black;
}

.form h2{
    text-align: center;
}

.form-row {
    margin-bottom: 10px;
    display: flex;
}

.form-row .feedback {
    /* display: inline-block; */
    margin-right: 20px;
    width: 50%;
    /* width: calc(50% - 20px); */
}

.form-row .feedback:last-child {
    margin-right: 0;
}

@media (max-width: 650px) {
    .form-row {
        display: block;
    }

    .form-row .feedback {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.feedback label {
    display: block;
    font-size: 14px;
    color: #111;
}

.feedback input, .feedback textarea {
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: transparent;
    border-bottom: 1px solid #ccc;
    color: #000;
    padding: 15px 0 10px;
    outline: none;
    font-family: inherit;
}