body
	{
		font-size: 16px; 
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		font-weight: 400;
		line-height: 1.5;
		color: var(--main_color);
		background-color: var(--color_shade2);
		min-height: 100vh;
		overflow-x: hidden;
	}
	
.main_menu_container 
{
   position: relative;
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.container
{
   text-align: center;
}

.container h1
{
   text-align: center;
   color: var(--color_shade10);
   font-size: 1500;
   font-style: italic;
}

.container p
{
   text-align: center;
   color: var(--color_shade6);
}

    
.slider_wrapper
{
    width: 100%;
    height: 100%;
    position: relative;
}

.slide
{
    overflow: hidden;
    width: 100%;
    height: 100%;
   /* display: none;*/
}

.slide img
{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.next_wrap, .prev_wrap
{
    position: absolute;
    padding: 15px;
    top: 0; 
    height: 100%;
    display: flex; 
    align-items: center;
    
}

.prev_wrap
{
    left: 0;
   
}

.next_wrap
{
    right: 0;
   
}

.next, .prev 
{
   background-color: var(--highlight_color);
   color: var(--color_shade1);
   border: 1px solid var(--highlight_color);
   cursor: pointer;
   display: flex; 
   align-items: center;
   justify-content: center;
   padding: 5px;
   opacity: .5;
}

.next:hover, .prev:hover 
{
   opacity: 1;
}

.next:focus, .prev:focus
{
   border: 1px solid var(--highlight_color);
}

.next span, .prev span 
{
   font-size: 25px;
}

.next
{
    border-radius: 0 5px 5px 0 ;
}

.prev
{
    border-radius: 5px 0 0 5px;
}

.main_menu_btn
{
    width: 100%;
    display: flex;
}

.main_menu_btn a 
{
    display: flex; 
    padding-right: 10px;
    color: white; 
    font-weight: bolder; 
    text-decoration: none; 
    width: 100%;
}