﻿@import url(//fonts.googleapis.com/css?family=Lato:400,700&display=swap);
body {
    background-image: url('../img/labg2.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-color: #efefef;
    font-family: 'Lato', sans-serif;
    font-size: 18px
}

h1 {
    color: #f55f16;
    position: relative;
    animation-name: moveinh1;
    animation-duration: 1s;
    font-weight: bold;
}

h2 {
    font-weight: bold;
	color: #a64238;
}

a {
    color: #47117c;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #7c48b0;
}

input[type=checkbox] {
    transform: scale(1.3);
    margin-right: 5px;
}

@keyframes moveinh1 {
    from {
        right: 10px;
        opacity: 0;
    }

    to {
        right: 0px;
        opacity: 1;
    }
}