@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700,700i');

body {
    background: #f9f9f9;
    font-family: Work Sans, Open Sans, sans-serif;
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: 0;
}

html {
  height: 100%;
}

.wrapper {
    box-sizing: border-box;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

header {
  border-bottom: 1px solid #d9d9d9;
  padding: 10px;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
}

main {
  padding: 50px;
  text-align: center;
  flex-grow: 1;
}

footer {
  padding-bottom: 20px;
  text-align: center;
  border-top: 1px solid #d9d9d9;
  flex-grow: 0;
  flex-shrink: 0;
}

.brand {
    background-image: url(cengage_logo.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 190px 64px;
    width: 190px;
    height: 64px;
}

h1 {
    margin: 0 0 28px 0;
    padding: 0;
    font-weight: 700;
    font-size: 24px;
    color: #4f4f4f;
    line-height: 36px;
}

p {
    font-weight: normal;
    font-size: 16px;
    color: #4f4f4f;
    line-height: 24px;
    margin: 0 0 28px 0;
}

a,
a:visited {
    color: #3942B0;
    text-decoration: none;
}

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

ul {
    list-style: none;
    margin: 0px;
    padding: 20px 0 0 0;
}

ul li {
    display: inline-block;
    padding: 0px;
    margin-right: 36px;
}

ul li:last-child {
    margin-right: 0;
}

footer {
    display: block;
    padding-bottom: 30px;
    font-size: 15px;
    text-align: center;
    border-top: 1px solid #d9d9d9;
    height: auto;
    width: 100%;

}

/*mobile*/
@media screen and (max-width : 1000px) {
    main {
        margin-top: 36px;
        margin-left: 36px;
        margin-right: 36px;
    }
    ul li {

        padding: 10px 0;
    }
    footer {
      display: inline-block;
      float: none;
      padding-left: 5px;
      line-height: 2em;
      width:100%;
    }
}
