*
{
    box-sizing: border-box;
}

body
{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/* -------------------------------------------- */


/* ---- Navigation Bar ---- */

/* Styling the top navigation bar */
.navbar
{
    overflow: hidden;
    background-color: #333;
}

/* Styling bar links */
.navbar a
{
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

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


/* ---- Header ---- */

/* Header attributes */
.header
{
    padding: 80px;
    text-align: center;
    background: #013bf8;
    color: white;
}

/* Header text attributes */

.header h1
{
    font-size: 40px;
}


/* Header quote text attributes */

.header p
{
    color: rgb(0, 140, 255);
}


/* ---- Column container ---- */

/* Dividing sections */

.row
{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* "About Me" section's attributes */

.side
{
    -ms-flex: 30%;
    flex: 30%;
    background-color: rgb(252, 252, 252);
    padding: 20px;
}


/* ---- Image dimentions ---- */

#Jaydon
{
    width: 300px;
    height: 400px;
}

#animal
{
    width: 400px;
    height: 250px;
}

/* Main colum */
.main {
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 20px;
  }
  /*toggle */
  .hidden {
    display: none;
}
  /* Footer */
  .footer{
    padding: 20px;
    text-align: center;
    background:#0457f1
}

 /* Responsive layout - when 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 {
        flex-direction: column;
    }
    img {
        max-width: 100%;
        max-height: 100%;
    }
  }

  /* responsie layout - when the screen is less than 400px wide, make the navigation link stack on top of each other instead oof next to each other */
  @media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
  }

/*
/* container----values page 

.container
{
    position: relative;
    width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}

.container .value-card{
    position: relative;
    max-width:300px;
    height: 150px;
    background-color: #ffffff;
    margin: 30px 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 50px black(0,0,0,0.);
    transition: 0.4s ease-in-out;
}

.container .value-card:hover{
    height: 300px;
}
*/