@import url('https://fonts.googleapis.com/css?family=Lato|Prata&display=swap');

body {
    margin: 0;
    color: white;
    text-align: center;
    background-image: linear-gradient(rgb(0,0,0,0.70),rgb(0,0,0,0.70)), url(bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.h1, .h2, .h3 {
    font-family: 'Prata';
    margin-top: 0;
    margin-bottom: 2em;
    color: orangered;
}

.h1 {
    font-size: 60px;
}

.h2 {
    font-size: 30px;
}

.h3 {
    color: orangered;
    font-size: 50px;
}

p {
    font-family: 'Lato';
    color: snow;
    margin-top: 0;
}

.outer {
    padding: 1em;
}

section {
    column-count: 1;
    column-gap: 2em;
}

img {
    width: 80%;
    margin: 1em 0 0;
}

@media only screen and (mid-width: 768px) {
    body {
        text-align: left;
        font-size: 18px;
    }
    p {
        line-height: 1.6em;
    }
    section{
        column-count: 3;
        column-rule-style: solid;
        column-rule-color: orangered;
    }
    section > * {
        margin-top: 0;
    }
    .h1 {
        font-size: 3rem;
        margin: 2em 0 1em;
    }
    article {
        padding: 2em;
    }
}



nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
}

h1 {
    color: white;
    font-size: 28px;
}

span {
    color: red;
}

ul, li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 20px;
}

ul, li, a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

ul, li, a:hover {
    color: orangered;
    transition: 0.5s;
}

button {
    border: none;
    background: red;
    padding: 12px 30px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: 0.4s;
}

button:hover {
    transform: scale(1.3);
    cursor: pointer;
}

footer {
    background: black;
    font-family: "Open Sans";
    padding-top: 40px;
    color: white;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p {
    max-height: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: white;
}

.socials a i {
    font-size: 1.1rem;
    transition: color .4s ease;
}

.socials a:hover {
    color: aqua;
}

.footer-bottom {
    background: black;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.socials img {
    width: 40px;
    height: 40px;
}

h3 {
    text-align: center;
}

.cp {
    text-align: center;
    font-family: serif;
    font-size: 15px;
}
