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


body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fcfdf9;
    color: #1e78fff8;
}

a {
    color: #000000;
    text-decoration: none;    
}
a:hover {
    text-decoration: underline;       
}
a:active {
    color: rgb(62, 62, 224);
}
a:visited {
    color: grey
}


.container {
    max-width: 750px;
    margin: auto;
    padding-top: 20px;
}
.avatar {
    width: 300px;
    border-radius: 30px;
    box-shadow: -13px 7px 5px 5px  rgba(0,0,0, .75);
    margin-left: 12px;
}

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

.info-text p {
font-style: italic; 
font-weight: bold; 
line-height: 1.4em;
color: #374655;
margin: 0; 
}

.info-text .paragraf {
    margin-left: 40px;
}

.info-text h1 {
    margin-top: 0;
    margin-left: 20px;
    margin-bottom: 10px;
}

@media (max-width: 671px) {
    .info{
        display: block;
        text-align: center;
    }
    .info-text {
        text-align: center;
    }
    .paragraf h1 {
        margin-top: 20px;
    }
}

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

/* .bg-1 {
background: #b1dbf5;
} */
.bg-2 {
background: #c6e8f8f8;
}
.bg-3 {
    background: #d2eef9f8;
}
.bg-4 {
    background: #fbf0de;
}
.card h2 {
    margin-bottom: 5px;
}

.card button {
    margin-top: 10px;
}

.btn {
    background: #3473e8f8;
    color: aliceblue;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    padding: 7px 15px;
    transition: all .4s;
    /* text-decoration: none; */
    /* font-size: auto; */
}

.btn:hover {
    opacity: .8;
    color: #2b56cbf8;
    background: #f2d074f8;
    font-size: 0.8rem;
}

.list {
    padding: 0 20px;
}

.list li {
    color: #4e4f50;
    margin-bottom: 10px;
}

.table {
    width: 100%;
}

.table th {
    padding-bottom: 15px;
    color: #4d68bc;
    font-size: larger;
}

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

.table td:nth-child(1),
.table td:nth-child(2) {
    color: #848688;
}
.form h3 {
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    color: #1e78fff8;
}
.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: transparent;
    border-bottom: 1px solid #787878;
    color: #000000;
    padding: 15px 0 10px;
    outline: none;
    font-family: inherit;
}




    
