html * {
    margin: 0;
    padding: 0;
    font-family: MuseoSans300;
    color: white;
}

body {
    padding: 20px;
}

.content {
    width: 100%;
    height: 100%;
	min-width: 960px;
	min-height: 640px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.hero {
	margin-top: 60px;
    flex-grow: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 400pt;
    line-height: 440px;
}
    
.name {
    font-size: 40pt;
}

.footer {
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.info {
    font-size: 18pt;
}

.copyright {
    align-self: flex-end;
    font-size: 12pt;
}

.contact {
    font-size: 18pt;
}


@media only screen and (max-device-width: 500px) and (max-width: 1000px) {
    .footer {
        margin-top: 100px;
        height: 30%;
        flex-direction: column;
        align-items: center;
    }

    .info {
	    margin-bottom: 100px;
        flex-grow: 3;
        font-size: 30pt;
    }
        
    .copyright {
        order: 3;
        padding: 30px;
        align-self: center;
        font-size: 14pt;
    }    

    .contact {
        font-size: 25pt;
    }    
}
