* {
    box-sizing: border-box;
  }
  
  body {
    overflow: hidden;
  }
  

.background {
    background: #fbfeff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    
}

.background #color-overlay {
    background: #fbfeff;
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0.2;
    max-width: 100%;
}

.background img {
    height: auto;
    width: auto;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

a {
	text-decoration: none;
	color: inherit;
}

.foreground {
position: relative;
    display: flex;
    flex-flow: wrap row;
    justify-content:center;
    align-items: center;
    align-self: left;
    padding: 32px;
    width: 70%;
    height: 100%;
    z-index: 1;
}

.content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: 'Montserrat Alternates', sans-serif;
    background: rgba(251, 254, 255, 0.3);
    border-radius: 16px;
    margin: 16px;
}

#logo {
	width: 50%;
    margin: 16px;
    align-items: center;
}

#logo img {
    width: 100%;
    min-width: 150px;
    max-width: 400px;
    object-fit: contain;
    max-height: 80%;
    padding: 2px;
}

@media screen and (max-width: 992px) {
    .foreground {
        display: flex;
        flex-flow: wrap column;
        flex-direction: column;
        justify-content:space-around ;
        align-items:center;
        align-self: flex-start;
        padding: 32px;
        z-index: 1;
        width: 70%;
        height: 100%;
    }
}


@media screen and (max-width: 450px) {
    .foreground {
        display: flex;
        flex-flow: wrap column;
        flex-direction: column;
        justify-content:space-around ;
        align-items:center;
        align-self: flex-start;
        padding: 32px;
        z-index: 1;
        width: 100%;
        height: 100%;
    }
}
  