@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 20%);
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    min-width: 600px;
    padding: 4em 4em 4em
}

h1, h3, h5, h6 {
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
   
}

h2 {
    margin-top: .3em;
}

a {
    color: #0083e8;
    line-height: 1.0;
}

b, strong {
    font-weight: 600;
}

#logo {
    width: 200px;
}
image {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgb(245, 255, 240);
    border-radius: 1px;
    display: block;
    margin: .3em auto;
    max-width: 95%;
}    
img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgb(245, 255, 240);
    border-radius: 1px;
    margin: .3em auto;
    max-width: 95%;
}
@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

.site-footer {
    background-color: rgb(245, 255, 240);
    
}
