:root {
    --lm-bg: #f6f8ff;
    --lm-bg-content: #fefefe;
    --lm-text: #4b6a9b;
    --lm-text-alt: #2b3442;
    --lm-shadow: 0px 16px 30px -10px rgba(70, 96, 187, 0.2);
    --lm-shadow-inactive: 0px 16px 30px -10px rgba(0, 0, 0, 0.2);
    --lm-icon-bg: brightness(100%);
    /* Btn */
    --btn: #0079ff;
    --btn-hover: #60abff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Mono", monospace;
}

body {
    background-color: var(--lm-bg);
    font-size: 13px;
    color: var(--lm-text);
    width: 100%;
    position: relative;
    height: 100vh;
}
  

.wrapper {
    display: flex;
    flex-direction: column;
    width: 713px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 36px;
}



.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-mode {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90px;
    letter-spacing: 2.5px;
    color: var(--lm-text);
    font-weight: bold;
}

.btn-mode:hover {
    cursor: pointer;
}

.search-bar {
    position: relative;
    background-color: var(--lm-bg-content);
    border-radius: 15px;
    box-shadow: var(--lm-shadow);
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: 6px;
    align-items: center;
    background-image: url(./assets/images/search-icon.svg);
    background-repeat: no-repeat;
    background-position-x: 24px;
    background-position-y: center;
    background-size: 20px;
}

#input {
    border: none;
    width: 80%;
    outline: none;
    background: none;
    color: var(--lm-text);
    padding-left: 50px;
    font-size: 18px;
}

#input::placeholder {
    color: var(--lm-text);
    letter-spacing: -0.5px;
    font-size: 18px;
}

.btn-search {
    min-width: 84px;
    padding: 14px 26px;
    background-color: var(--btn);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.btn-search:hover {
    cursor: pointer;
    background-color: var(--btn-hover);
}

.btn-search:active {
    transform: scale(0.975);
}

.info-wrapper {
    background-color: var(--lm-bg-content);
    border-radius: 15px;
    box-shadow: var(--lm-shadow);
    padding: 24px;
}

.info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 24px;
}

.profile-bio {
    display: flex;
    gap: 20px;
    margin: 10px 10px;
}

#avatar {
    width: 120px;
    border-radius: 90px;
}


.profile-info-wrapper h2{
    font-size: 28px;
    font-weight: bold;
    color: var(--lm-text-alt);
}

.profile-info-wrapper {
    display: flex;
    gap: 109px;
}

#user {
    color: var(--btn);
    font-size: 20px;
}



#bio {
    padding: 30px;
    line-height: 25px;
    opacity: 0.75;
}


.profile-stats-wrapper {
    display: flex;
    justify-content: space-between;
    background-color: var(--lm-bg);
    text-align: center;
    border-radius: 10px;
    padding: 18px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.stat-title {
    font-size: 14px;
}

.stat-info {
    font-size: 20px;
    font-weight: bold;
    color: var(--lm-text-alt);
}

.profile-links-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 15px;
    gap: 16px 0;
}

.profile-links {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
  
  
@media (max-width:780px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        width: 313px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 36px;
    }
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .main-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .btn-mode {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 80px;
        letter-spacing: 2.5px;
        color: var(--lm-text);
        font-weight: bold;
    }
    #input {
        border: none;
        width: 70%;
        outline: none;
        background: none;
        color: var(--lm-text);
        padding-left: 40px;
        font-size: 15px;
    }
    .btn-search {
        min-width: 60px;
        padding: 14px 26px;
        background-color: var(--btn);
        border: none;
        border-radius: 10px;
        color: white;
        font-size: 18px;
        font-weight: bold;
    }
    .profile-bio {
        display: flex;
        gap: 15px;
        margin: 10px 10px;
    }
    
    #avatar {
        width: 60px;
        border-radius: 50px;
    }
    
    
    .profile-info-wrapper h2{
        font-size: 13px;
        font-weight: bold;
        color: var(--lm-text-alt);
    }
    
    .profile-info-wrapper {
        display: flex;
        gap: 20px;
    }
    
    #user {
        color: var(--btn);
        font-size: 12px;
    }
    .profile-links {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #location{
        display: inline;
        font-size: 10px;
        gap: 5px;
    }
    #company{
        display: inline;
        font-size: 10px;
        gap: 5px;
    }
}









