﻿body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    max-height: 100%;
}
.main {
}

.logo {
    width: 20%;
    height: auto;
    margin: auto;
    float: left;
}


nav {
    width: 80%;
    height: 40px;
    display: flex;
    overflow:auto;
    align-items: center;
    background-color: dodgerblue;
    font-family: arial narrow;
    justify-content: flex-end;
}

ul {
    list-style: none;
}
    ul li {
        display: inline-block;
    }

        ul li a {
            text-decoration: none;
            display:block;
            width:100px;
            padding-top:10px;
            padding-bottom:10px;
            color: white;
            font-size: 20px;
            text-align:center;
        }

            ul li a:hover {
                background-color: black;
            }

        ul li button {
            width: 90px;
            height:24px;
            text-align: center;
            background-color:blue;
            color: white;
            margin-right: 30px;
            font-size: 14px;
            border:none;
            border-radius:12px;
            cursor:pointer;
        }
.tile-img1 {
    width: 80%;
    height: 250px;
    float: right;
    background-image: url("Pic/LineArt1.jpg");
    background-size: cover;
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
}

/*    display: flex;*/
/*align-items: center;*/
/*    float: right;*/
/*    text-align: center;*/
