* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*header*/
:root {
    --red: #b61105;
    --offwhite: #FAF9F6;
}

.header {
    background-color: var(--red);

}

/* header navbar*/

.navbar {
    display: flex;
    background-color: var(--red);
    padding: 5px 80px;
    max-width: 90%;
    margin: auto;
}

.logo {
    padding: 5px 10px;
    font-family: 'Poppins', sans-serif;

    font-weight: 800;
    font-size: 1.2em;


}

.logo a {
    text-decoration: none;
    color: white;
}

.navbar ul {
    display: flex;
    align-items: center;
    width: 100%;

}



.navbar ul li {
    list-style-type: none;
    margin-left: 20px;
}

.navbar ul li a {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
}

.navbar ul li a:hover {
    font-size: 1.1em;
    font-weight: 600;
}

.dropdown {
    float: left;
    overflow: hidden;
    margin-left: 10px;
}

.dropdown .dropbtn {
    font-size: 1.1em;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: poppins;
}

.dropdown:hover .dropbtn {
    background-color: #dd3131;
    border-radius: 4px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: poppins;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*section*/
.section {
    max-width: 80%;
    background-color: #ddd;
    margin: auto;
    padding: 20px;

}
.cards{
    margin-top: 15px;
}

.section h1 {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-family: roboto;
    font-size: 2em;

}

.section p {
    padding: 20px;

    width: 100%;
    margin: 15px auto;
    text-align: left;
    display: block;
    
    border-radius: 8px;

}

.cards ul {
    display: flex;
    justify-content: center;

}

.cards ul li {

    list-style-type: none;
    background-color: white;
    margin: 5px;
    border-radius: 4px;
    padding: 10px;
}

.cards ul li img {
    width: 120px;
    display: block;
    padding: 10px;
    margin: auto;
    border-radius: 50%;
}

.profile table,tr,th,td{
    padding: 5px;
    font-size: 0.93em;
    
}

/*footer*/
footer {
    margin-top: 25px;
    background-color: rgb(24, 20, 20);
}

.copyright {
    width: 80%;
    margin: auto;
    padding: 30px 0;


}

.copyright ul {
    color: white;
    display: flex;
    justify-content: space-evenly;


}

.copyright ul li {
    list-style-type: none;
    padding: 10px 0;


}

.copyright ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    font-family: poppins;

}

.copyright ul li a:hover {
    font-size: 1.2em;
}