:root{
    --main-color: black;
    --bg-color: white;
    --transp-bg:rgba(37, 41, 48, 0.555);
}
p{
    font-size: 1.32rem;
}
body{
    color: white;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
     url(images/lake.jpg) fixed center center no-repeat ;
    background-size: cover;
}
nav{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    background-color: var(--transp-bg);
    padding: 0.5rem 2rem;
    margin-bottom: 4rem;
}
.navlink{
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 1.4rem;
    
}
.navlink> a{
    color: white;
}
.logo{
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 2rem;
}
.home{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
main h1{
    font-size: 4rem;
    line-height: 5rem;
}
main h2{
    font-size: 3rem;
}
main .text{
    margin: 4rem 0;
}
.about_main{
    margin: 0 4rem;
}
.about_main .text{
    width: 50%;
}
.content{
    margin-left: 3rem;
}
.contact_text{
    margin-top: 2rem;
}
.bottom{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}
.persons{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
    width: 80%;
}

.person{
    width: 300px;
    padding: 1rem;
    border-radius: 1rem;
    background-color: var(--transp-bg);
}

.name{
    font-size: 1.4rem;
    font-weight: bold;
}

.name_image{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.description{
    margin-bottom: 2rem;
}
.icon{
    background-color: yellow;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    text-align: center;
}

.contact_field{
    background-color: var(--transp-bg);
    border: none;
    margin: 0 2rem;
    border-radius:  2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 2rem;
}
.inp{
    font-size: 2rem;
    padding: 0.5rem 1rem;
}
#search{
    border: none;
    padding: 0.5rem 1rem;
}
.search_parent{
    background-color: white;
    border: 1px solid black;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:  0.5rem 1rem ;
    gap: 0.5rem;
}
.search_parent>.icons{
    color: black;
}
button{
    cursor: pointer;
}
.search_result{
    overflow-y: scroll;
    height: 700px;
}

.result_item{
    padding-bottom:2rem ;
    margin: 2rem;
    color: black;
    background-color: white;
    border-radius: 2rem;
}

.result_item img{
    width: 100%;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.result_item .result_text{
    margin: 0.5rem 1rem;

}
.result_item h3{
    font-size: 2rem;
}