body, html {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

h2 {
    color: #c65b2e;
}

.main-navigation {
    position: sticky;
    height: 50px;
    top: 0;
    background-color: rgba(30, 84, 147, 1);
}

.main-container {
    display: flex;
    flex-direction: column;
}

.main-content {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-footer {
    display: flex;
    height: 80px;
    justify-content: space-evenly;
    align-items: center;
    background: #000;
    width: 100%;
}

.main-footer > a > svg {
    height: 5vh;
    fill: rgba(255, 255, 255 ,100);
    transition: 0.1s;
}

.main-footer > a:hover > svg {
    transition: 0.1s;
    transform: scale(1.1);
}

#hero, #location, #sponsors {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

#sponsors {
    text-align: center;
}

#actions {
    padding-top: 10px;
}

#cfp {
    padding: 8px;
    background-color: rgba(30, 84, 147, 1);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.location {
	height: 200px;
	text-align: center;
}

.contact-us {
	height: 200px;
	text-align: center;
	padding-bottom: 200px;
}