@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Rubik&display=swap');

/* font-family: 'Roboto', sans-serif;
font-family: 'Rubik', sans-serif; */

:root {
    font-size: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    background-color: #faf9f0;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    color: #3d405b;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
}

a:link { 
    color: #255d85 ;
    text-decoration: none;
}

a:visited {
    color: #5cade7;
    text-decoration: none;
}

a:focus {
    outline: solid 2px #e07a5f;
    text-decoration: none;
    color: #e07a5f;
}

a:hover { 
    color: #e07a5f;
    text-decoration: underline;
}

a:active {
    color: #e07a5f;
    /* position: relative; */
    /* top: 3px; */
    text-decoration: none;
    outline: 0;
}

/* a::after {
    display: block;
    width: 100%;
    content: "";
    height: 1px;
    background-color: #666;
} */

img {
    max-width: 100%;
}