html {
    padding:0px;
}

body {
    padding: 0px;
    margin: 0px;
    background-image: url('background11.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

div.container {
    position: absolute;
    bottom: 50;
    left: 50%;
    width: 500px;
    margin-left: -250px;
    opacity: 0.8;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

div.container div.logo {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px 0px 0px 25px;
    width: 300px;
    height: 300px;
    background-color: #8e2cbf;
}

div.container div.logo img {
    width: 200px;
    height: 200px;
}

div.container div.message {
    color: white;
    background-color: rgb(60, 60, 60);
    padding: 20px;
    border-radius: 0px 25px 25px 0px;
    display: flex;
    align-items: center;
}