/* * {
    outline: 2px solid red;
}*/

body {
    font-family: 'Lato', sans-serif;
    background-color: #40514e;
    color: #e4f9f5;
}
  
h1 {
    text-align: center;
    font-size: 38px;
}

h2 {
    font-size: 32px;
}

a {
    color: #30e3ca;
}

hr {
    color: #30e3ca;
    border-style: solid;
    margin-top: 0;
}

button {
    border-style: solid;
    border-color: #40514e;
    border-radius: 2px;
    background-color: #e4f9f5;
    color: #40514e;
    cursor: pointer;
}

button:hover {
    background-color: #40514e;
    color: #e4f9f5;
}

@keyframes iconFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

i {
    animation: iconFadeIn 0.1s ease-out;
    width: 1.25em;
}