
* {
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: Arial;
    margin: 0;
}

/* Header/logo Title */
.header {
    /* padding: 60px; */
    padding: 14.5rem;
    text-align: center;
    /* background: #5B5B5B; */
    background: #5B618A;
    color: white;
}

/* font-family: 'Abel', sans-serif;
font-family: 'Fjalla One', sans-serif; */



/* Style the top navigation bar */
.navbar {
    display: flex;
    /* background-color: #45D3E0; */
    background-color: #F7C4A5;
}

h1, h2, h3 {
    /* color: #45D3E0; */
    color: #F7C4A5;
    text-align: left;
    font-family: 'Tangerine', 'bold';
}

h4, h5, h6 {
    color: #5B5B5B;
    text-align: left;
    font-family: 'Patua One', cursive;
}

#my-page {
    text-align: center;
}

/* Style the navigation bar links */
.navbar a {
    color: #5B5B5B;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.top-section {
    background:#45D3E0;
    padding:5px;
}

/* Column container */
.row {  
    display: flex;
    flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
    flex: 20%;
    background-color: rgb(207, 207, 207);
    padding: 20px;
}

/* Main column */
.main {
    flex: 80%;
    background-color: white;
    padding: 20px;
    margin-top: -16rem;
}

.main-inside {
    flex: 20%;
    background-color: white;
}

.hr {
    border: 2px solid #F7C4A5;
    width: 90%;
}

/* Fake image, just for this example */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

.logo-image {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: -13.5rem;
    margin-bottom: -3rem;
    width: 100%;
}


#logo-image {
    display: flex;
    margin-left: -11rem;
    margin-right: auto;
    margin-top: -6.5rem;
    margin-bottom: -3rem;
    width: 50%;
}

#logo-image:hover {
    display: flex;
    margin-left: -11rem;
    margin-right: auto;
    margin-top: -6.5rem;
    margin-bottom: -3rem;
    width: 50%;
    opacity: 1;
}

#logo-image-yv {
    display: flex;
    float: center;
    margin-left: -1rem;
    margin-right: auto;
    margin-top: 0rem;
    margin-bottom: -3rem;
    width: 50%;
    width: 20rem; 
    height: auto;
}

.color-img {
    display: flex;
    margin-bottom: -10rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -5rem;
    width: 80%;
}

code {
    background: #45D3E0;
    padding:1rem;
    margin: 1rem;
    display: flex;
    float: center;
    width: 20%;
}

code:hover {
    background: rgb(158, 160, 160);
    padding:1rem;
    margin: 1rem;
    display: flex;
    float: center;
    width: 20%;
}

#text-color {
    color: #5B618A;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

#main-text {
    display: flex;
    margin-left: 5rem;
    margin-right: 5rem;
}

p {
    font-family: 'Abel', sans-serif, 'semi-bold';
}

#quote {
    text-align: left;
    margin-left: 10rem;
    margin-right: 11rem;
}


#b-hello {
    color: #5B618A;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.button {
    background-color: #5B618A;
    color: white;
    text-decoration: none;
    margin-bottom: 4rem;
    margin-right: 2rem;
    padding: 0.7rem;
}

.button:hover {
    transition-property: color;
    transition-duration: 0.5s;
    background-color: #F7C4A5;
    color: black;
}

.button-2 {
    background-color: #45D3E0;
    color: black;
    text-decoration: none;
    margin-bottom: 4rem;
    margin-right: 2rem;
    padding: 0.7rem;
}

.button-2:hover {
    transition-property: color;
    transition-duration: 0.5s;
    background-color: #5B618A;
    color: white;
}



.button-3 {
    background-color: #F7C4A5;
    color: black;
    text-decoration: none;
    margin-bottom: 4rem;
    margin-right: 2rem;
    padding: 0.7rem;
}

.button-3:hover {
    transition-property: color;
    transition-duration: 0.5s;
    background-color: #5B5B5B;
    color: white;
}


/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #5B618A;
}


.sidenav {
    height: 100%;
    width: 20%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(207, 207, 207);
    overflow-x: hidden;
    padding-top: 20px;

    position: -webkit-sticky;
    position: sticky;
    top: 200;
}

.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    color: #5B618A;
    text-align: left;
    font-family: 'Abel', sans-serif, 'semi-bold';
}

.sidenav a:hover {
    color: black;
    background-color: #F7C4A5;
    transition-duration: 0.5s;
}

.sidenav a.active {
    color: black;
    background-color: #F7C4A5;
}


.topnav .search-container {
    float: right;
  }
  
  .topnav input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border: none;
  }
  
  .topnav .search-container button {
    float: right;
    padding: 6px 10px;
    margin-top: 8px;
    margin-right: 16px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
  }
  
  .topnav .search-container button:hover {
    background: #ccc;
  }

  #quote-right {
      float: right;
      margin-right: 5rem;
      transform: scaleY(-1);
      transform: scaleX(-1);
  }

  #quote-left {
    float: left;
    margin-left: 5rem;
}

  
  @media screen and (max-width: 600px) {
    .topnav .search-container {
      float: none;
    }
    .topnav a, .topnav input[type=text], .topnav .search-container button {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
    .topnav input[type=text] {
      border: 1px solid #ccc;  
    }
  }


/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row, .navbar {   
        flex-direction: column;
    }
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}




  