/* Typography */

html {
    font-family: 'Roboto', sans-serif;
}

@media (min-width: 576px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    html {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 20px;
    }
}

/* Custom Styles */

body {
    margin: 0;
    padding: 0;
    background-color: #303F9F;
    color: #FAFAFA;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    margin: 2rem 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons-social i {
    font-size: 2rem;
}

.icons-social a {
    color: #FAFAFA;
}
