
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
    font-family: "Roboto", sans-serif;
    user-select: none;
}

section {
    align-items: center;
    justify-content: center;
    padding-top: 20vh;
}

img#button {
    width: 30vh;
}

button {
    background-color: transparent;
    border: none;
}

img:hover {
    filter: drop-shadow(1px 1px 30px grey);
    -webkit-filter: drop-shadow(1px 1px 30px grey);
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

button:active {
    filter: drop-shadow(1px 1px 50px white);
    -webkit-filter: drop-shadow(1px 1px 50px white);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}