@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');

* {
    background: #053C5E;
    font-family: 'Raleway', sans-serif;
}
    
.orb {
    height: 100px;
    width: 100px;
    border-radius: 200px;
    background: #1F7A8C;
    margin: auto;
    margin-top: 200px;
}

.orb_1 {
    animation-name:orb_1;
    animation-duration: 5s;
    animation-delay: 0s;
    animation-iteration-count:infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}
    
@keyframes orb_1 {
    from { transform: scale(1); background: #DB222A;}
    to { transform: scale(3); background: #BFDBF7;}
}



/* Header */
.mainLine {
    color: #DB222A;
    text-align: center;
    font-size: 3rem;
    animation: blink ease-in;
    animation-iteration-count: infinite;
    animation-duration: 10s;
}

@keyframes blink {
    0% {color: black;}
    50%{color: #DB222A;}
    100% {color: black;}
}



/* Footer */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    padding: 7px 15px;
    background: #053C5E;
    color: #FFF;
    font-size: 1em;
}
footer a {
    font-size: 1em;
    color: #FFF;
}
footer p {
    margin: 10px auto;
    max-width: 1280px;
    box-sizing: border-box;
    text-align: center;
}

