{
box-sizing: border-box;
}

body {
margin: 0;
background-color: rgb(12, 83, 12);
overflow-x: hidden;
}

h1 {
    color: white;
    font-family: 'Merriweather', serif;
    text-align: center;
    margin: 30px 0;
    min-height: 60px;
}

.nav {
display: flex;
justify-content: center;
background-color: rgb(90, 148, 90);
padding: 15px;
}

.item {
color: white;
text-decoration: none;
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size: 30px;
}

.item {
color: black;
}

.first {
background-color: rgb(55, 102, 55);
padding: 10px 40px;
border-radius: 4px;
}

/* VIDEO */

#myVideo {
width: 100%;
height: auto;
display: block;
margin: 0;
padding: 0;
}

/* MAIN TEXT */

.text {
width: 100%;
max-width: 1100px;
margin: 0 auto;
padding: 30px;
color: wheat;
font-family: 'Roboto', sans-serif;
font-size: 20px;
line-height: 1.8;
}

.text p {
margin-bottom: 25px;
}

/* FLEX SECTIONS */

.features {
display: flex;
width: 100%;
}

.plan {
flex: 1;
}

/* IMAGE */

.stylish {
width: 100%;
height: auto;
display: block;
}

/* SECOND SECTION */

.pic {
background-color: #F5F0E3;
padding: 20px;
gap: 20px;
}

/* HEADINGS */

.sign {
color: white;
text-align: center;
font-family: 'Merriweather', serif;
font-size: 42px;
padding: 20px;
}

.media {
color: white;
text-align: center;
font-family: 'Roboto', sans-serif;
font-size: 20px;
}

/* BUTTON */

.btn {
display: flex;
justify-content: center;
margin: 25px 0;
}

.btndecoration {
display: inline-block;
background-color: #5A945A;
color: white;
text-decoration: none;
padding: 15px 30px;
border-radius: 8px;
font-size: 20px;
border: none;
}

.btndecoration {
background-color: #3d6f3d;
}

/* FOOTER */

.bottom {
text-align: center;
background-color: white;
padding: 15px;
margin: 0;
font-family: 'Roboto', sans-serif;
}

/* TABLET */

@media (max-width: 768px) {

.features {
    flex-direction: column;
}

.pic {
    flex-direction: column;
    padding: 10px;
}

.plan {
    width: 100%;
}

.text {
    width: 100%;
    padding: 20px;
    font-size: 16px;
}

.sign {
    font-size: 30px;
    padding: 15px;
}

.item {
    font-size: 24px;
}

}

/* PHONE */

@media (max-width: 480px) {

.text {
    padding: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.item {
    font-size: 22px;
}

.sign {
    font-size: 22px;
    line-height: 1.3;
}

.media {
    font-size: 16px;
    padding: 0 10px;
}

.btndecoration {
    width: 85%;
    text-align: center;
    font-size: 18px;
}

.pic {
    padding: 5px;
}
}


