body {
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 18px; /* Sets the font size to 16px */
    font-weight: 300; /* Sets the font weight to 300 */
    line-height: 1.6; /* Sets the line-height to 1.6 * the font-size */
    color: #4a4a4a;
  }
  
  h1, h2, h3, h4 {
    line-height: 1.4;
  }
  h1 {
    font-size: 3.00em;
    font-weight: 700;
  }
  
  h2 {
    font-size: 2.50em;
    font-weight: 700;
  }
  
  h3 {
    font-size: 2.00em;
    font-weight: 400;
  }
  h4 {
    font-size: 1.50em;
    font-weight: 400;
  }

  img {
    width: 100%;
  }

  a {
    color: #AB4C08;
    text-decoration: none; /* No underlining */
  }
  
  a:visited { /* visited link */
    color: #AB4C08;
  }

  a:hover {
    color: #ffffff;
    text-decoration: underline; /* Underlining when hovering over a link */
  }

  a:active { /* selected link */
    color: #000000
    ;
  }


  a:hover,
a:focus {
  color: #ff7f50;
  text-decoration: underline;
}

.button {
  display: inline-block; /* since the <a> tag is inline by default, we need to change this to inline-block, but more on this in the next exercise */
  background-color: #ff7f50;
  color: #994c30; /* needed to override the default link color */
  font-weight: 400;
  padding: 10px;
  border-radius: 3px;
  border-bottom: 2px solid #994c30; /* width of the border, type, color */
  transition: 0.2s opacity;
}

.button:hover {
  opacity: 0.8; /* Reduces the opacity of the button to 80% */
  text-decoration: underline;
}

.button.contact {
  background-color: transparent;
  color: #ff7f50;
  text-transform: uppercase;
  border: 2px solid #ff7f50;
}

.button.contact:hover {
  background-color: #ff7f50;
  color: #ffffff;
}

#my-link {/* id selector */
  color: green;  
}

header {
  padding-top: 10px;
  padding-right: 5px;
  padding-bottom: 15px;
  padding-left: 5px; 
  font-family: 'Roboto', sans-serif;
  font-size: 30px; /* Sets the font size to 16px */
  font-weight: 300; /* Sets the font weight to 300 */
  line-height: 1.6; /* Sets the line-height to 1.6 * the font-size */
  color: #4a4a4a;
  background-color: #ffe4c4;
  text-align: center;
  padding: 10px 0 4px;
}

main {
  padding-top: 0px;
}


.container {
  max-width: 1200px;
}

.contact {
  margin: 30px;

}

.row {
  margin: 25px 0; /* 25px top and bottom, 0 left and right */
}

#hero h1 {
  margin: 0;
  padding: 0.67em 0; /* Centers text */
}
#hero h3 {
  text-align: center; /* Centers text */
}


nav > ul {
margin: 1em 0;
}

nav > ul > li {
  display: inline-block;
}

nav > ul > li > a:visited {
  padding: 0 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4a4a4a;
}


#hero {
  background-color: #ffe4c4;
  text-align: center;
}

#hero span {
  display: block;
  color:#F8A060;
}

.logo {
  max-width: 150px;
}

.navtoggle, .navtoggle.responsive {
  position: relative;
}

.navtoggle li .icon {
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 20px;
  padding-right: 0;
}

.navtoggle li:not(:last-child) {
  display: none;
}

.navtoggle.responsive li  {
  display: block;
}

.navtoggle.responsive nav {
  padding: 24px 0 0;
}
.navtoggle.responsive li  {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(255,127,80,0.5);
}

.navtoggle.responsive li:last-child  {
  padding: 0 0 10px;
}

/* ==============================
Medium devices (640px and larger)
================================= */
@media only screen and (min-width: 641px) {

header {
  text-align: unset;
  padding: 20px 13px;
}

nav {
  width: auto;
  float: right;
  margin-top: 4px;
}

nav > ul > li {
  display: none;
}


.navtoggle li:last-child {
  display: inline-block;
}

.navtoggle li:not(:last-child) {
  display: inline-block;
}

.col-md-6 {
  width: 50%;
} 

[class*="col-"] {
  float: left;
  padding: 15px;

}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.logo {
  max-width: 150px;
}
}

/* ==============================
Large devices (1024px or larger)
================================= */
@media only screen and (min-width: 1024px) {


header {
  text-align: unset;
  padding: 20px 13px;
}

nav {
  width: auto;
  float: right;
  margin-top: 4px;
  font-size: 25px;
}

.col-lg-5 {
  width: 40%;
} 
.col-lg-7{
  width: 60%;
} 

}
/* ==============================
X-large devices (1440px or larger)
================================= */
@media only screen and (min-width: 1440px) {
  header {
    text-align: unset;
    padding: 20px 13px;
  }
  
  nav {
    width: auto;
    float: right;
    margin-top: 4px;
    font-size: 25px;
  }
  
  .col-lg-5 {
    width: 40%;
  } 
  .col-lg-7{
    width: 60%;
  } 
}

/* ==============================
Extra-large devices (1920px or larger)
================================= */
@media only screen and (min-width: 1920px) {
  header {
    text-align: unset;
    padding: 20px 13px;
  }
  
  nav {
    width: auto;
    float: right;
    margin-top: 4px;
    font-size: 25px;
  }
  
  .col-lg-5 {
    width: 40%;
  } 
  .col-lg-7{
    width: 60%;
  } 
}

#contact h2 {
  margin: 20px;
}

#contact p {
  margin: 20px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
   column-gap: 20px
}

.pathway-health {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  margin: 40px;
}

* {
  box-sizing: border-box;
}

.button {
  display: inline-block;
  background-color: #ff7f50;
  color: white;
  font-weight: 400;
  text-decoration: none;
  padding: 10px;
  border-radius: 3px;
  border-bottom: 2px solid #994c30;
  transition-duration: 0.2s;
  transition-property: opacity;
}
.button:hover {
  opacity: 0.8;
}

@keyframes color-change {
  from {fill: #edc655;}
  to {fill: #f76414;}
}

@keyframes color-change {
  0% {fill: #edc655;}
  50% {fill: #fcffad;}
  100% {fill: #f76414;}
}

.sun {
  animation-duration: 4s;
  animation-name: color-change;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

@keyframes cloud-move {
  from {transform: translate(0,50px);}
  to {transform: translate(200px,50px);}
}

.cloud-front {
  animation: 30s cloud-move infinite alternate linear;
}

@keyframes cloud-move-reverse {
  from {transform: translate(446px,48px);}
  to {transform: translate(100px, 48px);}
}

.cloud-back {
  animation: 34s cloud-move-reverse infinite alternate linear;
}


#social-media a {
  display: inline-block;
  resize: horizontal;
  height: 70px;
  width: 70px;
}

#social-media a {
  text-align: center;
}