body {
	margin: 0;
	background-color: white;
	-webkit-user-select: none;
}

.main {
    display: flex;
    align-items: center;
    height: 100vh;
    user-select: none;
    justify-content: center;
  }

.image-container {
    position: relative;
    width: 50%;
  }

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
	position: relative;
  }

.message {
    color: black;
    font-size: 2.5vw;

    top: 20%;
    left: 7%;
	transform: rotate(-2deg);
	position: absolute;
	text-align: center;
    
    pointer-events: none;
    user-select: none;
  }
