@media screen and (min-width: 380px) {

body{
        background-color: #FFDAB9;
    } 

h1{font-size: 35px}

p {font-size: 20px}

#homeHero {
    background-color: #FFDAB9;
}


.block2 {
    background-color: #FFDAB9;
    padding: 2%;
    width: 96%;
    float: left;
}

.block3 {
    background-color: #FFDAB9;
    padding: 2%;
    width: 96%;
    float: left;
}

}

@media screen and (min-width: 768px) {
    body{
        background-color: #FFDAB9;
    } 
    
    h1{font-size: 35px}
    
    p {font-size: 16px}
    
    #homeHero{
        background-color: #FFDAB9;
    }
    
    
    .block2 {
        background-color: #FFDAB9;
        padding: 2%;
        width: 46%;
        float: left;
        margin-bottom: 2%;
    }
    
    .block3 {
        background-color: #FFDAB9;
        padding: 2%;
        width: 46%;
        float: left;
        margin-bottom: 2%;
    }

}

@media screen and (min-width: 1025px) {

    body{
        background-color: #FFDAB9;
    } 
    
    .block2 {
        background-color: #FFDAB9;

    }
    
    .block3 {
        background-color: #FFDAB9;
    }
    
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .menu-nav a:not(:first-child) {display: none;}
  .menu-nav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .menu-nav.responsive {position: relative;}
  .menu-nav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menu-nav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}