* {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* colors */

:root {
    --color-primary: #BDD2e4;
    --color-secondary: #bdd2;
    --color-background: #F0F4F8;
    --color-text: #333;
}

.line {
    width: 100%;
    height: 7px;
    background-color: #83B8C6;
    margin: 0;
}
.separator {
    width: 30%;
    height: 3px;
    margin: 20px 0;
    background-color: #83B8C6;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
    margin-bottom: 3%;
}
.img-circle {
    border-radius: 50%;
    border: 1px solid #83B8C6;
}
.img-circle:hover {
    border-color: #4A90E2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    transform: gradient(45deg, #4A90E2, #83B8C6);
    opacity: 0.8;
}

.img-small {
    width: 200px;
    height: 200px;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
}

@media screen and (max-width: 768px) {
    .img-small {
        width: 200px !important;
        height: 200px !important;;
    }
    .img-medium {
        width: 50%;
        height: 50%;
    }
    .img-large {
        width: 100%;
        height: 100%;
    }
    
}