*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background: linear-gradient(120deg, #ffffff, #000000);
    height: 100vh;
    width: 100%;
  
}

header{
    position: relative;
    width: 100%;
    height: 60px;
    background: red;
}
header h1{
color: white;
text-align: center;
text-decoration: underline;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-style: italic;
text-shadow: 2px 2px #ffffff #f70f68;
}

img{
    width: 250px;
    height: 300px;
    margin-left: 60px;
    border-radius: 50%;
    border: 2px dashed red;
}

p{
    margin-top: 160px;
    color: goldenrod;
    font-size: 22px;
    margin-left: 100px;

}
span{
    color: greenyellow;
    font-style: italic;
    margin-left: 100px;
}
button{
    position: absolute;
    width: 150px;
    height: 40px;
    color: red;
    margin-top: 200px;
    border-radius: 20%;
    margin-left: 100px;
}

.rights{
    color: red;
    margin-top: 100px;
    font-size: 22px;
}
button:hover{
    background: pink;
}