﻿
@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Lato&display=swap');

html, body {
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    overflow: hidden;
    font-family: Lato, sans-serif;
}

header, content, footer {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    display: block;
    margin: 0 auto;
}

header {
    top: 0;
    width: 100%;
    height: 4rem;
}

    header .container {
        display: flex;
        justify-content: space-between;
    }

    header .logo {
        font-family: 'Bubblegum Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 4rem;
        color: #ec1085;
    }

    header nav {
        justify-content: right;
    }

    header nav a {
        text-decoration: none;
        display: block;
        color: #222;
        padding: 0 1.5rem;
    }

    header nav a:hover {
        color: #404040;
    }

    header nav ul {
        list-style: none;
    }

    header nav li {
        position: relative;
        display: inline-flex;
    }

content {
    top: 5rem;
    bottom: 5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

content .container {
    display: flex;
    justify-content: space-between;
}

.hero {
    display: inline-flex;
    align-content: center;
    vertical-align: middle;
    font-size: 3.5rem;
    padding: 0 10%;
}

.hero > * {
    width: 50%;
    margin: 0;
    padding: 0;

}

.hero img {
    max-height: 300px;
    vertical-align: bottom;
}

.about {
    background-color: #3512E8;
    color: #fff;
    display: block;
    position: relative;
}

.about div {
    margin: .5rem 2rem;
    font-size: 2rem;
    text-align: center;
}

.signup div {
    font-size: 2rem;
    text-align: center;
    margin: 0 auto;
}

.signup a {
    text-decoration: none;
    color: #fff;
    background-color: #ec1085;
    padding: .5rem 1rem;
    border-radius: .5rem;
}

.ringable {
    font-family: 'Bubblegum Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ec1085;
    font-size: 1.2rem;
    user-select: none;
}

footer {
    bottom: 0;
    height: 5rem;
    background-color: #202020;
    color: #fff;
    text-align: center;
    font-size: 1rem;
}

footer a {
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 1100) {
    .container {
        width: 100%;
    }
}

@media screen and (min-width: 1101px) {
    .container {
        width: 80%;
    }
}
