
canvas {
    width: 960px;
    height: 1200px;
    max-width: 960px;
    min-width: 960px;

}


body {
    background: url("../img/care_line.PNG") no-repeat fixed;
    background-size: 960px 1200px;
    background-position-x: center;
    display: table;
    max-width: 960px;
    position: absolute;
    left: 0;
    right: 0;
    width: 960px;
    height: 100%;
    margin: 0 auto;


}

.browser {

    text-align: center;
    position: relative;
    padding: 0;
    color: black;
    margin-top: 130px;

}

header {

    text-align: center;
    position: relative;
    padding: 0;
    max-width: 960px;
    min-width: 960px;

}

.logo {

    width: 120px;
    height: 120px;

}

.contactinfo {
    color: azure;
    margin-top: 150px;
    text-align: center;
    position: absolute;
    padding: 0;
    border: solid black;
    margin-left: 20%;
    margin-right: 20%;
    min-width: 60%;
}

a {
    color: cornflowerblue;
    background-color: white;
    border: solid black;
    width: 25px;
    height: 25px;
}

a:hover {
    background-color: cornflowerblue;
    color: black;
    border: solid white;

}


ul {
    list-style: none;
    display: inline-block;
    text-align: center;
    padding: 0;
    max-width: 960px;
    min-width: 960px;
}
li {
    display: inline-block;
}

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    max-width: 960px;
    min-width: 960px;
    width: 100%;
    height: 50px;
    padding: 0;
    color: aliceblue;
}

@media only screen and (max-width: 480px) {
    .contactinfo {
        background-color: red;
    }
}

@media only screen and (min-width: 481px) and (max-width: 1024px) {
    .contactinfo {
        background-color: blue;
    }
}

@media only screen and (min-width: 1024px) {
    .contactinfo {
        background-color: green;
    }
}


@media print {

    * {
        color: black !important;
        background: transparent !important;
        text-shadow: none !important;
        box-shadow: none !important;
        border: none !important;
        float: none !important;
        clear: none !important;
    }

}