.message_container {
	position: fixed;
	top:0;
	z-index: 99999999;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
    align-items: center;
	background-color: #743bbca6;
    transition: .5s;
    opacity: 0%;
}

.message_container.animated {
	opacity: 100%;
}

.message_container img {
    height: 40vh;
    width: auto;
}

.message_container .message {
	background-color: #eeeeee;
	box-shadow: 0px 12px 40px 5px #2d243852;
	width: 35vw;
    display: flex;
    flex-direction: column;
    align-items: center;
	border-radius: 40px;
}

.message_container h2 {
	margin-bottom: 0;
}

.message_container p {
    max-width: 80%;
    text-align: center;
}

.message_container .btns {
	width: 70%;
    display: flex;
    justify-content: space-between;
	margin-top: 10px;
    margin-bottom: 40px;
}

.message_container .btns a {
	padding: 15px 50px;
    cursor: pointer;
	transition: .2s;
}

.message_container .btns a:nth-child(1):hover {
    color: #743BBC;
}

.message_container .btns a:nth-child(1):active {
	opacity: 0.5;
}


.message_container .btns a:nth-child(2) {
    background-color: #743BBC;
    color: white;
    border-radius: 20px;
	box-shadow: 0 10px 20px #753bbc9f;
}

.message_container .btns a:nth-child(2):hover {
	box-shadow: 0 20px 40px #753bbc9f;
	transform: translateY(-10px);
}

.message_container .btns a:nth-child(2):active {
	box-shadow: 0 0 20px #753bbc9f;
	transform: translateY(5px);
}

@media screen and (max-width: 1280px) {
    .message_container .message {
        background-color: #eeeeee;
        box-shadow: 0px 12px 40px 5px #2d243852;
        width: 90vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 40px;
    }
    .message_container .btns {
        width: 80%;
        margin-bottom: 40px;
    }
}