* {
    margin: 0;   
    padding: 0;
    font-family: Arial, sans-serif;
  }

html{
    scroll-behavior: smooth;
}  

body {
background-color: #dbdbdb;
overflow-X: hidden ;
}

nav{
background-color: white;
width: 100%;
height: 170px;
border-bottom: solid #a13335 10px;
display: flex;
justify-content: space-between;
flex-direction: row;
align-items: center;

}

.colorbox{
background-color: #a13335;
text-decoration: none;
font-size: 36px;
color: white;
float: right;
padding: 10px;
padding-left: 20px;
padding-right: 20px;



}

.NavLogo{
   height: 120px ;
}

nav a:hover {
  background-color: #742527;
 
}

#navSpacing{
  margin-right: 60px;

}

.BackImg{
width: 100%;
border-bottom: solid #a13335 10px;
}

#container {
    width: 80%;
    margin: 0 auto;
}

.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 3px 3px 14px 2px rgb(155, 150, 150);  
    border-radius: 10px;
}

.section-img {
    width: 40%;
    height: 320px;
    border-radius: 10px;
    box-shadow: 2px 1px 14px 2px rgb(155, 150, 150);  
}

.section-text {
    width: 55%;
}

h2, h3 {
    color: #a32119;
    margin-bottom: 10px;
    font-family: 'Oswald';
    font-size: 32px;
}

p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.5;
}

.donate-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a32119;
    color: #fff;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}

.donate-btn:hover {
    background-color: #742527;
}

/* Reviews */

.colorbox2{
   background-color: white;
   height: 610px;
   box-shadow: 3px 3px 14px 2px rgb(155, 150, 150);  
   border-radius: 10px;
}
                      
#reviews {
    width: 64%;
    margin: 20px auto;
    text-align: center;
}

#reviews h2 {
    font-size: 30px;
    color: #a32119;
}

.review-card {
    display: inline-block;
    width: 25%;
    background-color: #742527;
    box-shadow: 3px 2px 14px 2px rgb(155, 150, 150);  
    border-radius: 20px;
    margin: 10px;
    padding: 10px;
    padding-bottom: 180px;
    padding-top: 20px;
}

.review-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 7px solid white;
}

.Names {
    margin: 10px 0;
    color: white;
    font-size: 33px;
}

.review-card p {
    margin-top: 10px;
    font-size: 18px;
    color: white;
}

/* Subscribe!!! */

.colorbox3{
   background-color: white;
   height: 610px;
   box-shadow: 3px 2px 14px 2px rgb(155, 150, 150);  
   border-radius: 10px;
   
   
}

.Subcontainer {
    width: 64%;
    margin: 20px auto;
    text-align: center;
}
 

h1 {
    color: white;
    margin-bottom: 10px;
    font-family: 'Oswald';
    font-size: 32px;
}

#subscriptions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.subscription {
    background-color: #7B2B1D;
    box-shadow: 3px 2px 14px 2px rgb(155, 150, 150);  
    padding: 30px;
    border-radius: 15px;
    width: 210px;
    color: white;
    text-align: center;
    position: relative;
}

.subscription h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.subscription p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.subscription .type {
    font-size: 2rem;
    font-weight: bold;
 
 
}

.light .type {
    color: #d18b7b;
}

.normal .type {
    color: #b0b0b0;
}

.premium .type {
    color: #d1bb6f;
}

.icon img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.subscription p {
    margin-top: 10px;
    font-size: 18px;
    color: white;
}

/* Footer */

#footer {
    background-color: #7a2e1e;
    color: white;
    padding: 20px;
    text-align: center;
}
#footer p {
    margin: 5px 0;
    color: white;
}
#footer a {
    color: #fff;
    text-decoration: none;
}
#footer a:hover {
    text-decoration: underline;
}
#footer .social-icons {
    margin-top: 10px;
}
#footer .social-icons a {
    display: inline-block;
    margin: 0 5px;
}
#footer .social-icons img {
    width: 30px;
    height: 30px;
}