*{
    box-sizing:border-box;
}

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

/* style the top navigation bar*/
.navbar {
    overflow: hidden;
    background-color:black
}

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

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

.header{
    padding:60px;
    text-align: center;
    color: #db7093;
    background:#DB7093;
    
}

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

.header p{
    color: black;
    font-size: 20px;
}

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

/*create 2 unequal columns that sit next to each other
Sidebar/left Column*/
.side{
    -ms-flex: 30%;
    flex: 30%;
    background-color: #ffc0cb;
    padding: 14px ;
}


.main{
    -ms-flex: 70%;
    flex: 70%;
    background-color: white;
    padding: 20px;
}

/* toggle */
.hidden{
    display: none;
}

.footer{
    padding: 20px;
    -ms-flex: auto;
    flex: auto;
    text-align: center;
    background-color: black;
}

.footer p{
    color: white;
}

#scratch{
    width: 300px;
    height:auto;
}

#software{
    width: 300px;
    height: auto;
}

/* Responsive layout - when the screen is less than 700px wide, make the 2 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%;
    }  
}

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