#wrapper {
    text-align: center;
    border-radius: 20px;
    border-color: lightgray;
    border-width: 10px;
    border-style: solid;
    background-image: linear-gradient(45deg, pink, red, white);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    border-color: hotpink;
    border-width: 10px;
    border-style: solid;
}

img:hover {
    border-color: lightpink;
    border-width: 15px;
    border-style: solid;
    width: 100%;
    height: 200px;
    margin: auto;
}

nav{
    display: flex;
    justify-content: space-evenly;
}

footer:hover {      
    margin-top: 20px;
    font-size: 100px;
    text-shadow: 0 0 10px;
}