body, ul, li, h1, h2, a{
    margin: 0;
    padding: 0;
    font-family: arial;
}

header {
    background-color:#ee4705;
    padding: 1px;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0px;
    left: 0px;
}
header h1{
    color: white;
    border: 8px solid white;
    padding: 6px 12px;
    display: inline-block;
    border-radius: 26px;
}

.bannert{
    position: relative;

}

.bannert img{
    max-width: 100%;
}

nav{
    background-color: #f4f4f4;
    padding: 20px;
    position: sticky;
    top: 106px;
}

nav ul{
    white-space: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}
nav li{
    width: 14%;
    display: inline-block;
    font-size: 24px;
}

nav li a{
    text-decoration: none;
    color: #4b4b4b;

}
nav li a .join{
    color: #f51111;
}

main{
    max-width: 100%;
    width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

article h2{
    color: #F63232;
    font-size: 46px;
    text-align: center;
}

article p{
    line-height: 2em;
    color: #4b4b4b;
}

.images{
    text-align: center;
    margin: 90px 0;
    white-space: nowrap;
}

.images li{
    display: inline-block;
    width: 40%;
    margin: 20px 5%;
}

.images li img{
    max-width: 100%;
}

section.join{
    background-color: #f4f4f4;
    text-align: center;
    padding: 60px 20px;
    color: #4b4b4b;
}

.join h2{
    font-size: 36px;
}

footer{
    background-color: #ee4705;
    color: white;
    padding: 10px;
    text-align: center;
}

/* pseudo classes */

nav li a:hover{
    text-decoration: underline;
    background-color: rgb(201, 200, 236);
    padding: 3px;
}

.images li:hover{
   position: relative;
   top: -4px; 
}

article p::first-line{
    font-weight: bold;
    font-size: 1.2em;
}

section.join p::first-letter{
    font-size: 1.5em;
}

section.join a{   
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    background-color: #25d366; 
    color: white; 
    padding: 10px 15px; 
    border-radius: 50px; 
    font-size: 16px; 
    text-decoration: none;
}

p::selection{
    background-color: red;
    color: white;
}

/* Responsive style */

@media screen and (max-width: 1400px){


    nav li{
        font-size: 18px; 
    }
}

@media screen and (max-width: 700px){

    .images li{
        width: 100%;
        margin: 20px auto;
        display: block;
    }
}

@media screen and (max-width: 560px){

    nav li{
        font-size: 20px;
        display: block;
        width: 100%;
        margin: 12px 0;
    }
    header{
        position: relative;
    }
    nav{
        top: 0;
    }
}
