/* ======= Font ======= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* ======= Common Style ======= */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Oswald" , sans-serif;
}

body {
    background-color: #e6e6e6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* ======= Header ======= */

header {
    background-color: #3674B5;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    color: #f9f9f9;
}

.header-content-logo {
    display: flex;
    align-items: center;
}

.header-content-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.header-content-logo h3 {
    font-size: 1.4rem;
    font-weight: 900;
}

.header-content-user {
    display: flex;
    justify-content: space-between;
    width: 19%;
}

.header-content-user a {
    display: block;
    color: #f9f9f9;
    text-decoration: none;
    font-size: 1.2rem;
}

.header-content-user a i {
    margin-right: 5px;
}