* {
    box-sizing: border-box;
}

/*Global*/

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: black;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
}

img {
    width: 100%;
}

/*Header*/

.containerheader {
    position: fixed;
    z-index: 1000;
    background-color: blanchedalmond;
    width: 100%;
    max-width: 1340px;
    top: 0px;
    padding: 20px;
}

.headercontend {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    width: 150px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

header nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 50px;
}

header nav ul {
    display: flex;
}

header nav ul li {
    padding: 10px;  
}

header nav ul li a {
      color: rgb(65, 5, 121);
    font-size: 18px;
    font-weight: bold;
}

header nav ul li a:hover {
    text-shadow: rgb(199, 48, 151) 2px 2px 3px ;
    cursor: pointer;
    zoom: 103%;
}


/*Main*/

.maincontend {
    padding-top: 100px;
}

.titlepres {
    font-size: 30px;
    text-align: center;
} 

iframe {
    margin-bottom: 25px;
}

.button {
    margin-bottom: 15px;
    text-align: center;  
}

.button a {
   cursor:pointer;
   background-color: rgb(239,239,239);
   border-color: black;
   border:solid;
   border-width: thin;
   padding: 10px;
}

.button:hover {
    
transform: scale(1.02);
}





/*Footer*/

.footercontend {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: blanchedalmond;
   text-align: center;
   padding-top: 25px;
   padding-bottom: 25px;
   font-weight: bolder;
   justify-content: space-around;
}

#icons {
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1335px) {
    header nav ul li a {
        font-size: 14px;
    }

    .logo {
        width: 75px;
        height: 25px;
    }
    
}

@media screen and (max-width:1008px) {

    #icons {
        display: block;
      
    }

    #icons:before {
        content: "\2630";
        font-size: 25px;
    }

    .logo {
        width: 150px;
    height: 50px;
    }

    nav ul {
        position: fixed;
        right: -100%;
        top:10%;
        flex-direction: column;
        background-color: rgba(255, 235, 205, 0.622);
        width: 50%;
        text-align: center;
        transition: 0.25s;
    }

    nav li {
        padding: 3px 0;
    }

    nav.active ul {
        left:50%;

    }

}

@media screen and (max-width:768px) {
      .footercontend {
    font-size: 10px;
      }

    .titlepres h1 {
        font-size: 25px;
    }

    iframe {
        height: 300px;
        width: 500px;
    }
 }




   