body {
    background-color: #03260c;
    font-family: Serif, sans-serif;
    
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section1 {
    background-color: #254d32;
    width: 90vw;
    height: 40vh;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 5px 15px rgb(0, 0, 0);  
}

.section2 {
    background-color: #254d32;
    width: 90vw;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 5px 15px rgb(0, 0, 0); 
    gap: 25px; 
} 

.section1 img {
    width: 15%;
    height: 90%;
    border-radius: 10px;
    margin-right: 20px;
}


.section1 img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

h1 {
    color: #d0db97;
    display:block;
    font-size: 40px;
    margin-bottom: 65px;
    font-weight: normal;
}

p {
    color: #d0db97;
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 20px;
}

.strength-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px #3a7d44;  
}

.box {
    background-color: #03260c;
    width: 85vw;
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgb(0, 0, 0);
    
}
h2 {
    color: #adffbd;
    font-size: 2rem;
    margin-bottom: 20px;
    margin-left: 20px;
}

.box:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease;
}
