*{
    margin:0;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
    text-align:justify;
}

header{
    height: 50px;
} 
header nav {
    height: 50px;
    background: #000;
}
header nav ul li{
    list-style: none;
    padding-left: 20px;
    margin-left:400px;
    margin-top: 15px;
    display: inline-block;  
}
header nav ul li:hover{
    transition: calc(0.5s);
    transform: scale(1.1);
}
header nav ul li a{
    color:white;
    text-decoration: none;    
}
header nav ul li a:hover{
    color: sandybrown;
}
 h1{
    margin-left: 25%;
    margin-top: 20px; 
    margin-bottom: 20px;
}
main section{
    width: 50%;
    margin-left: 25%;    
} 
 article{
    background-color:burlywood;
    height: 300px;
}
article:hover{
    transition: calc(0.5s);
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
}
 article p{
padding: 20px;
}
article a{
    text-decoration:none;
    color:#000;
}
article a:hover{
     transition: calc(0.5s);
   background-color: aqua;  
}

footer{
    background-color: #000;
    height: 50px;
    position: absolute;
    bottom:0;
    width: 100%;
}
footer p{
     color:white;
     padding: 10px;
}
@media screen and (max-width: 529px) { 
h1{
    margin-left: 20%;
    margin-top: 20px; 
    margin-bottom: 20px;
}   
header nav {
    height: 50px;
    background: #000;
}
header nav ul li{
    list-style: none;
    padding-left: 40px;
    margin-left:105px;
    margin-top: 15px;
    display: inline-block;  
}
main section{
    width: 65%;
    margin-left: 20%;   
} 
}
@media screen and (min-width: 595px) and (max-width: 1000px) {
 
header nav {
    height: 50px;
    background: #000;
}
header nav ul li{
    list-style: none;
    padding-left: 40px;
    margin-left:25%;
    margin-top: 15px;
    display: inline-block;  
}
main section{
    width: 60%;  
} 
}
