@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    height: 100%;
    margin: 0;
}

.main {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    left: 0;
    top: 0;

    background-color: #222A35;
    font-weight: bold;
    z-index: 2;
}

.logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 85%;
}

.logo img {
    height: 360px;
}


@media screen and (max-width: 720px){
    .logo img {
        height: 300px;
    }
}

@media screen and (max-height: 550px){
    .logo {
        height: 70%;
    }
    .logo img {
        height: 200px;
    }
}

.message {
    position: absolute;
    box-sizing: border-box;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
}

.message > h1 {
    font-size: 20px;
}
.message > p {
    font-weight: 400;
    font-size: 14px;
}