
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /*background: linear-gradient(to bottom, #451f64, #38137e);*/
    color: white;
    text-align: center;
    
}


.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background: #2e1c4e;
    box-shadow: 0px 4px 10px rgb(253, 253, 253);
}

.navbar .logo h1 {
    margin: 0;
}
.logo{
    width: 130px;
}

.navbar .nav-buttons button {
    background: #e4ad34;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 10px;
    margin-left: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    
}

.navbar .nav-buttons button:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
}


.content {
    padding: 20px;
    background-color: rgb(15, 14, 14);
    margin: 30px 10%;
    border-radius: 20px;
}
.button{
    margin: 20px;
}
.btn{
    background: #e4ad34;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin-left: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    
    
}
.btn:hover{
    background-color: black;
    color: white;
}

.hero-image {
    width: 80%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
    margin: 20px 0;
}

.content h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(100, 100, 100, 0.8);
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(100, 100, 100, 0.8);
    margin: 0 10px;
}
.article-container {
    margin: 10px auto;
    background-color: rgb(15, 14, 14);
    border-radius: 10px;    
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.article-container h2 {
    font-size: 28px;
    color: #e9e9e9;
    margin-bottom: 10px;
}

.article-container h3 {
    font-size: 22px;
    color: #ffffff;
    margin-top: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.article-container p, ul {
    font-size: 16px;
    color: #e0e0e0;
    text-align: left;
    margin: 10px 20px;
}

.article-container ul {
    list-style: none;
    padding: 0;
}

.article-container ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.article-container ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    margin: 20px auto;
    padding: 15px 25px;
    background: #e4ad34;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: #0a0a0a;
    color: white;
}
.footer {
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    color: #e0e0e0;
    margin-top: 20px;
}

