.container {
    display: flex;
    justify-content: center;
    align-items: center;

}

img {
    width: 600px;
    height: 300px;
}

h1 {
    text-align:  center;
    font-size: 36px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    margin-top: 0 auto;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    margin: 25dvb auto;

    z-index: 1;

    transition: all 0.3s ease-in-out;
}

.buttonHover {
    transform: rotate(3deg) scale(1.2);
}


.buttonClick {
    transform: scale(10);
}

.blackscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0);
    z-index: 9999;

    pointer-events: none;
    opacity: 0;

    transition: all 0.3s ease-in-out;
}

.blackscreen.active {
    pointer-events: auto;
    opacity: 1;
}