*{
    text-decoration: none;
}
a{
    color: aliceblue;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.logo img {
    width: 30%;
}

.header {
    background: #EB5C56;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background: #383D45;
    width: 100%;
    text-align: center;
    z-index: 2000;
}

.nav a {
    color: white;
    padding: 10px;
    text-decoration: none;
}

.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.main {
    height: 2000px;
    flex: 1;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.footer {
    background: #EB5C56;
    color: white;
    text-align: center;
    padding: 15px;
    bottom: 0;
    z-index: 1000;
}

.styled-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.styled-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background-color: #F3C137;
    margin: 10px auto 0;
    border-radius: 2px;
}
.data-source {
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #444;
    background: linear-gradient(to right, #f0f0f0, #d9e4f5);
    padding: 10px 15px;
    border-left: 4px solid #0077cc;
    border-radius: 5px;
    display: inline-block;
    margin-left: 5%;
}