header, .options-container, .search-bar-container, main, .photo-content, .text-container {
    display: flex;
    align-items: center;
}

#search-icon, .freemov-button {
    display: none;
}

header {
    height: 12.5%;
    justify-content: end;
}

.options-container {
    height: 100%;
    width: 50vw;
    padding-right: 30px;
    
    justify-content: space-between;
}

.search-bar-container {
    height: 100%;
    width: 100%;
}

#search-bar {
    height: 50px;
    width: 80%;
    padding-left: 20px;
    
    border-radius: 20px;
    border: none;
    background-color: rgba(2, 2, 2, 0.50);
    color: var(--text-color);
}

#search-bar::placeholder {
    color: rgba(255, 255, 255, 0.51);
    font-family: var(--primary-font);
    font-weight: 600;
}

#search-icon {
    height: 40px;
    width: 40px;
    margin: 0px 10px;

    border-radius: 100px;
    background-color: rgba(37, 27, 54, 0.5);
    
}

.freemov-button {
    width: 32px;
    height: 32px;

    border-radius: 100px;
    background-color: rgba(235, 228, 228, 0.9);
}

.freemov-button > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------------------------------------------------------------------------*/

main {height: 75%;}

.photo-container {
    height: 100%;
    width: 50%;
}

.photo-content {
    height: 100%;
    width: 100%;
    
    flex-direction: column;
    justify-content: center;
}

#profile-photo {
    width: 60%;
    object-fit: cover;
    border-radius: 100%;
}

.text-container {
    height: 100%;
    width: 50%;
    overflow-y: auto;
}

.text-content {
    width: 100%;
    height: 100%;
    padding-right: 20%;

    display: flex;
    flex-direction: column;
    justify-content: safe center;
    gap: 30px;
}

#text-name {
    font-size: clamp(1rem, 8vw, 3.8rem);
    font-weight: bold;
}

#text-description {
    font-size: 25px;
    font-weight: medium;
    line-height: 150%;

    color: var(--primary-color);
}

#text-bio {
    font-family: var(--secondary-font);
    font-size: 25px;
    font-weight: 500;
    line-height: 150%;
    text-align: justify;
}

#home-button {
    border-bottom: 3px solid  var(--primary-color);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}