@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Permanent+Marker&family=Playwrite+NZ+Basic:wght@100..400&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Permanent+Marker&family=Playwrite+NZ+Basic:wght@100..400&family=Roboto:ital,wght@0,500;1,500&family=SN+Pro:ital,wght@0,200..900;1,200..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin-top: 2rem;
}

.main-headings {
    display: flex;
    font-size: 4rem;
    font-family: var(--main-font);
    transform: translateY(40px);
    color: #00000097;
    line-height: 5rem;
}
.main-headings span {
    color: black;
}
.primary-headings {
    max-width: 500px;
    font-family: var(--primary-font);
    line-height: 25px;
    margin-bottom: 1rem;
    color: #716d6d;
}
.btn-fill {
    background: var(--main-color);
    color: #ddd;
    border: none;
    padding: 12px 20px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.5s ease-out;
}
.btn-fill:hover {
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.btn-outline-active {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    background: transparent;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.5s ease-out;

}
.btn-outline-active:hover {
    background: var(--main-color);
    color: #fff
}

.primary-headings > p {
    font-family: var(--primary-font);
}

.img-container {
    border-radius: 50%;
    box-shadow: 4px 7px 5px 2px #bcbaba;
    width: 400px;
    height: 400px;
    margin-left: 20px;
    
}
.header-img img {
    /*clip-path: ellipse(40% 50%);*/
    border-radius: 100%;
    background: url(../../image/Vera_Zoran.jpg);
    background-position: top;
    background-size: cover;
    width: 400px;
    height: 400px;
    
}







