* {


    margin: 0;
    padding: 0;
    border: 0;

}

body {
    font-family: 'Press Start 2P', monospace;

    text-align: center;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    height: 100vh;
    width: 100vw;
}

h1 {
    font-size: 2.1rem;
    margin: 0 0 10px;
}

p {
    margin: 0 0 30px;
    font-size: 0.8rem;
}


a {
    transition: all 0.3s;
}

a,
a:link,
a:active,
a:visited {
    color: #5ebfdd;
}

a:hover {
    color: #b95edd;
}


img {
    height: 70vh;
    box-shadow: 0 20px 80px rgba(50, 30, 30, 0.15), 0 30px 40px rgba(60, 20, 20, 0.1);
    transition: all 0.3s;
}

img:hover {
    height: 73vh;
}

@media (max-width: 500px) {
    img {
        height: 50vh;
    }

    img:hover {
        height: 57vh;
    }
}