*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace
}

body{
    background: yellow;

}
h1{
    position: absolute;
    z-index: 20;
    text-align: center;
    left: 500px;
    text-decoration: underline;
    font-size: 35px;
}
img{
    position: relative;
    width: 100%;
    height: 400px;

}
img:hover{
    opacity: 0.8;
}
p{
    width: 800px;
    height: 100px;
    font-size: 22px;
    color: blue;
    font-weight: 600;
    text-decoration: dashed;
    margin-left: 100px;
}

button{
    color: black;
    font-size: 22px;
    font-weight: 500;
    background: aqua;
    height: 50px;
    width: 200px;
    border-radius: 50px;
    margin-left: 100px;
    
}

span{
    text-align: center;
    position: absolute;
    margin-top: 80px;
    color: red;
    font-size: 24px;
    font-weight: 600;
    margin-left: 100px;
}