* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}
div#pasek {
    height: 100px;
    width: 100%;
    border-bottom: 3px solid black;
}
img#pasek {
    margin-top: 5px;
    margin-left: 50px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 0 10px black;
    transition-duration: 0.3s;
} 
img#pasek:hover {
    margin-top: 1px;
    margin-left: 46px;
    height: 98px;
    cursor: pointer;
}
h1 {
    text-align: center;
    color: #e63131;
    font-size: 30pt;
    margin-top: 40px;
}
h3 {
    text-align: center;
}