* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color:whitesmoke;
    font-family:arial;
}

.container {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: #FEFEFE;
    outline: 2px solid black;
    width: 800px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.logo {
    background-color: #FFFFFF;
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo > img {
    display: block;
    outline: 1px solid black;
    width: 200px;
    height: auto;
}

.text {
    background-color: white;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.title {
    padding: 20px;
}

.title > h1 {
    font-size: 60px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 40px;
    background-color: gray;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@supports (-webkit-touch-callout: none) {
  .container {
    min-height: -webkit-fill-available !important;
  }
}

@media (max-width: 1000px) {
    .card {
	flex-direction: column;
	width: 90vw;
    }
    .logo {
	flex: 0 0 20%;
    }
    .logo > img {
	width: 150px;
    }
    .text {
	flex: 0 0 50%;
    }
    .title > h1 {
	font-size: 50px;
    }
}
