@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900&subset=latin,latin-ext');

/*400 = normal; 700 = bold; 900 = strong*/

body {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 18px;
    max-width: 640px;
}

h1 {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 24px;
    /*line-height: 10px;*/
}

h2 {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 14px;
    /*line-height: 10px;*/
}

p {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 12px;
    /*line-height: 10px;*/
}

.tab {
    font-family: 'Lato';
    font-weight: 400;
    font-size: 12px;
    margin-left: 40px;
}

a {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 12;
    text-decoration: none;
    color: #bfbfbf;
    line-height: 17px;
}

.p_small {
    line-height: 10px;
    font-weight: 400;
}

/*if possible
hover: lato black (or underline)
selected: lato black (900) with #6699CC;      (or normal weight blue)
*/

a:hover {
    /*font-family: 'Lato Black';*/
    font-weight: 900;
    /*text-decoration: underline;*/
    color: #000000
}

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

a:visited:hover {
    color: #000000
}

a.selected:link {
    font-weight: 900;
    color: #6699CC;
}

a.selected:visited {
    font-weight: 900;
    color: #6699CC;
}

a.selected:hover {
    font-weight: 900;
    color: #000000
}

/*Style to auto-scale images for devices*/
.img_rescale {
    width: 100%;
    height: 100%;
    object-fit: contain
}

/*Responsive stuff*/
/*@media only screen and (max-width: 500px) {
    main_img {
        height: 150;
    }
}*/