body 
{
    background: linear-gradient(to right, #000000 0%, #ff0000 100%);
    font-family: 'Comic-Sans';
}



#wrapper
{
    width: 1000px;
    margin: auto;

    border: 2px solid red;
    background-color: white;
}

img
{
    border: 2px solid black;
    border-radius: 99px;
    margin: 10px;
    float: right;


}

header 
{
    text-align: center;
    color: black;
    font-size: 50px;
    font-weight: bolder;
}

footer
{


    text-align: center;
    color: black;
    font-size: 20px;
    height: auto;
    padding: 10px 0;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

section
{

    text-align: center;
    color: black;
    font-size: 20px;

}

h1
{

    font-weight: bold;

    color: black;
    font-size: 40px;
    text-align: left;

}
h2
{

    font-weight: bolder;
    color: black;
    font-size: 30px;
    text-align: left;

}

p
{

    font-weight: light;
    font-size: 20px;
    
}


hr
{
    border: none;
    height: 2px;
    background-color: red;
    margin: 0;
    

}

nav
{

    text-align: center;
    padding: 14px 20px;

    background-color: rgba(0, 0, 0, 0.331);

}

nav ul
{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav a
{


    color: black;


    font-size: 20px;
    display: inline-block;
    padding: 10px 30px;

    text-align: center;

    transition: transform 0.3s ease;
}

a:hover
{
    color: blue;
    transform: scale(1.2);

}




a:-webkit-any-link
{
    text-decoration: underline;

    cursor: pointer;
    

}

nav li
{
    display: inline-block;

    vertical-align: middle;

    margin: 0 20px;
    
}

li
{

    font-weight: light;
    font-size: 20px;
    text-align: left;
}

ul
{
    display: block;
    list-style-type: disc;
    align-content: center;

}