*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    font-weight: 600;
}

a:hover{
    color: #02457a;
    text-decoration: none;
}

body{
    /* max-width: 1280px; */
    margin: 0 auto;
    background-color: rgb(240, 240, 240);
    font-family: 'Poppins', sans-serif;
}

header {
    /* max-width: 1360px; */
    margin: 0 auto;
    background-color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #131313;
    box-shadow: 0px 5px 10px rgba(8, 40, 97, 0.2);
    border-radius: 10px;
}

.logo-left{
    height: 100px;
    cursor: pointer;
} 
.logo-right {
    width: 200px;
    cursor: pointer;
}

nav {
    flex-grow: 1;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    color: #001b48;
}

nav ul li {
    margin: 0 15px;
}

span{
    color: #02457a;
    font-weight: 600;
}

.main{
    max-width: 1000px;
    margin: 2rem auto;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.item{
    width: 400px;
    background-color: rgb(255, 255, 255);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 10px 5px 16px 5px rgba(2, 69, 122, 0.7);
    font-size: 1rem;
}

.report{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}