header{
    background: black;
    height: 100px;
}
 
nav{
    background: orange;
    height: 100px;
    width: 100px;
    float: right;
    transition: 0.6s;
}
 
header img{
    height: 100px;
    float: left;
}
 
body{
    margin: 0;
    background: grey;
}
 
nav img{
    height: 30px;
    width: 30px;
    margin-left: 35px;
    margin-top: 35px;
}
 
nav:hover{
    background: orangered;
}

header ul{
    display: inline-block;
    margin-top: 34px;
}

header ul li{
    display: inline-block;
}

header ul li a{
    text-decoration: none;
    color: white;
    font-size: 25px;
    margin-right: 50px;
    transition: 0.5s;
}

header ul li a:hover{
    color: orange;
}

.main{
    background: grey;
    color: white;
    font-size: 25px;
}

.container{
    width: 100%;
    max-width: 1024px;
    padding: 15px;
    margin: 0 auto;
}

.container img{
    display: block;
    margin: 0 auto;
    width: 68%;
    transition: 1s;
}

.container img:hover{
    width: 70%;
    box-shadow: 10px 10px 20px black;
}

.container h1, h2, p, strong{
    transition: 0.2s;
}

.container h1:hover, h2:hover, p:hover, strong:hover{
    text-shadow: 1px 1px 4px orangered;
}

.contact{
    font-size: 23px;
    text-decoration: none;
    color: white;
    display: block;
    text-align: center;
    transition: 1s;
}

.contact:hover{
    font-size: 50px;
    text-shadow: 10px 10px 10px black;
}

.centerText{
    text-align: center;
}