@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;700&family=Cabin:wght@400;700&display=swap');

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
    position: relative;
    min-height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-color: white;
    color: black;
    font-family: 'Cabin', sans-serif;
    padding: 0;
    margin: 0;
    max-width: 100%;
    overflow-y: scroll !important;
    font-size: 20px;
}

body.main {
    background-color: black;
    color: white;
    background-image: url(/bigcone.jpg);
    background-size: cover;
    background-position: center center;
}

a {
    text-decoration: underline;
}

body.main a {
    color: white;
}

body.main .site-wrap {
    background-color: rgba(0,0,0,.4);
    height: 100vh;
}

header, section, footer {
    padding: 1rem 2rem;
}

header a {
    text-decoration: none;
}

header h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 650px) {
    header h1 {
        font-size: 1.7rem;
    }
}

h1.logo {
    display: flex;
    align-items: center;
}

img.icon {
    width: 80px;
    display: inline-block;
    margin-right: 15px;
}

section, section h1 {
    
}

footer {
    position: fixed;
    display: flex;
    bottom: 0;
    width: 100%;
    color: white;
    background-color: rgba(0,0,0,.2);
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}

footer a {
    color: white;
}

footer .right a {
    margin-left: 20px;
}

footer i {
    font-size: 1.5rem;
}

