/* This is my main CSS style document */

/* CSS Reset */

* {
    margin:0;
    padding:0;
    font-size:100%;
    box-sizing: border-box;
}

header, nav, main, section, article, footer {
    display:block;
}
   
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color:black;
    display:inline-block;
}

img {
    width:35%;
}

/* New CSS Codeing starts here  */

/* Global Styles */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #7B6D8D;
    color: #CEB992;
    text-align: left;
}

/* Header Styles */

header{
    background-color: #ba5624;
    color: #CEB992; 
    padding: 1rem 0; 

}

h1 {
    font-size: 5rem;
    text-align:center;
    font-family: 'Staatliches', cursive;

}

h2 {
    font-size: 2rem;
    text-align: center;
}

header h2 {
    font-size: 1.5rem;
    padding: none;
}

.head-flex {
    display: flex;

}

/* .toggle-button {
    display: none;
} */



/* Nav Styles */

nav {
    background-color: #FED766;
    padding:1rem;
    font-family: 'Staatliches', cursive;
    font-size:1.5rem;
    
}

.nav-list {
    display:flex;
    justify-content:space-evenly;
}

.nav-link {
    color: #1E1E24;
    padding: 0.4rem;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out;

}

.nav-link:hover {
    color: #d7d2dd;
    background-color: #645e28;

}

/* Sections Styles */

.mamu {
    align-items:center;

}
.there-he-is {
    align-self: center;
}

section {
    padding: 1rem 10%;
}

section h2{
    margin-bottom: 0.5rem;
}

article {
    margin: 0.5rem 0;
}

h3 {
    font-size: 1.25rem;
}

img {
    border-radius: 0.5rem;
}

.cta-button {
    color:#1E1E24;
    background-color:#CEB992;
    padding:0.7rem 0.8rem;
    border: 3px solid #666666;
    margin: 0 auto;
    font-size: 1.5rem;
    text-align: center;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out;


}

.cta-button:hover {
    color: #d7d2dd;
    background-color: #645e28;

}

.monkeyline {
    font-size: 3rem;
    align-content: center;
}

.section-flex {
    display:flex;
}

.left-flex {
    align:center;
}
.right-flex {
    align:center;
}

.galleri {
    align:center;
}

.monkey-toy {
    width: 100%;
    padding: 1rem;
   

}


/* Footer Styles */

footer {
    background-color:#CEB992;
    padding: 2rem;
    color:#1E1E24;
    font-weight: bolder;

}

/* Logo Style */

.logo-imag {
    width:15%;

}

.monkey-imag {
    width: 100%;
    margin-left: 35%;
    margin-right: 5%;

}

 .head-text {
    width: 85%;
    align-self:center;
    margin-left: 5%;
    margin-right: 14%;
   
 }

    

/* Utility Classes */

/* display: reverse-flex; */

/* .red-font {
    color:blue;
} */

/* Media Query

nav {
    height:0;
    overflow:hidden;

}

.visible {
    height: 100vh;
}

.toggle-button{
    cursor: pointer;
    padding: 0 2rem;
    font size: 2rem;
} */