* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;

}

body {
    width: 100vw;
    background-image: url("../img/CoverLetter/bacground_Cover_letter.PNG");
    background-repeat: no-repeat;
    background-size: 100% 100vh;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;

}

header {
    display: flex;
    width: 100%;
    background-color: #F3F3F3;
    position: fixed;
    z-index: 1111;
    top: 0;
    left: 0;

}

.header_left {
    width: 15%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.header_left .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin-top: 1rem;
}

.site_name {
    text-align: center;
    font-weight: 900;
    font-size: 22px;
    white-space: nowrap;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.header_middle {
    width: 60%;
    padding-left: 1rem;
    /* background: violet; */
}

.header_middle ul {
    display: flex;
    list-style-type: none;
    margin-top: 2rem;
    gap: 1rem;

}

.header_middle ul li {
    font-size: 18px;
    margin-left: 1rem;
    margin-bottom: 1rem;

}

.header_middle ul li a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.header_right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}

.token_badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f2f0ff;
    border: 1px solid #d9d4ff;
    border-radius: 999px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #5b3df6;
    transition: background-color 0.2s ease;
}

.token_badge:hover {
    background-color: #e6e2ff;
}

.token_icon {
    width: 16px;
    height: 16px;
}

.header_right a {
    font-weight: 700;
    margin-left: 15px;
    text-decoration: none;

}

.sign_part {
    color: #4b2cff;

}

.log_in {
    background: #4b2cff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;

}


.profile-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #092cf0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-btn:hover {
    transform: scale(1.08);
}