html {
    color: #53585B;
    font-size: 1em;
    line-height: 1.4;
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    
    background: linear-gradient(-45deg, #d1f2c4, white);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;

    position: relative;
    font-family: 'Roboto', sans-serif;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

.main-container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    flex-direction: column;
}

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 50;
    min-height: 420px;
}
.main {
    text-align: center;
    padding: 1rem 2.2rem 2rem 2.2rem;
    /* background: rgba(255, 255, 255, 0.85); */
    border-radius: 0;
    /* box-shadow: 0 0 50px -10px black; */
    z-index: 10;
}

img {
    max-width: 100%;
    width: 300px;
    height: auto;
}

.text {
    max-width: 500px;
    text-align: left;
}

.contact .pre {
    min-width: 100px;
    display: inline-block;
    font-weight: bold;
}

.footer {
    background: #52C12A;
    color: white;
    display: flex;
    width: 100%;
    justify-content: center;
    min-height: 300px;
}

.footer .column {
    width: 200px;
    padding: 1rem 2rem;
}

.footer ul {
    padding-left: 1.2rem;
}

a {
    font-weight: bold;
    color: #52C12A;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    .main-wrapper {
        display: block;
        min-height: auto;
    }
    
    .contact .pre {
        width: 100%;
        margin-top: 1rem;
    }
}

@media only screen and (max-width: 720px) {
    .footer {
        flex-direction: column;
        display: block;
        min-height: auto;
    }
    .footer .column {
        width: auto;
        border-bottom: 1px solid #5ed832;
    }
}
