* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Alata", sans-serif;
}

body {
    background-image: url('https://static.vecteezy.com/system/resources/previews/046/037/100/non_2x/row-of-peaches-with-leaves-on-yellow-background-free-photo.jpeg');
    margin-bottom: 50px;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

/*----FOOTER-----*/

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #21522f;
    color: rgb(255, 255, 255);
    padding: 10px;
    margin-top: 90x;
}

/* ------ NAVBAR ------- */

nav {
    display: flex;
    justify-content: end;
    align-items:center;
    background-color: #21522f;
    opacity: 1;
    padding: 10px 20px;
    height: 80px;
    width: 100vw;
}

.logo_container {
    margin: 10px;
    display: flex;
    align-items: center;
    position: fixed;
}

.logo_container img {
    width: 50x;
    height: 50px;
    display: inline-block;
}

.logo_name {
    font-size: 40px;
    color: #FFA500;
    margin-left: 15px; 
    font-weight: bold;
    display: inline-block;
    font-family: "Delicious Handrawn", cursive;
    font-weight: 400;
    font-style: normal;
    
}

ul {
    padding: 0;
    list-style: none;
    display: flex; 
    align-items: center;
    margin: 0;
}

li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    text-align: center;;
    font-size: 22px;
    margin-right: 60px;
}


a:hover {
    color: #f0f0f0;
    background: gray;
}

/* ------ BODY ------ */


.container {
    list-style-type: none;
    padding: 0;
    text-align: left;
    width: 50%;
    float: left;
    clear: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.body_header {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    margin-top: 80px;
    margin-bottom: 10px;
    margin-left: 50px;
}

.body_text {
    font-family: "Alata", sans-serif;
    font-size: 20px; 
    margin-left: 65px;
    line-height: 2;
}

.button_view {
    width: 80%;
    height: 55px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: large;
    margin-left: 30px;
    margin-top: 80px;
    border-radius: 10px;
    background-color: #a83434;
    border-color: white;
    color: white;
}