/* Hello World CSS */

/* don't forget to validate at https://jigsaw.w3.org/css-validator/ */

body {
  background: #B8D6FD;
  font-size: 16px;
  height: 100vh; /* trick to make the "page" the full height */
}


/* minmax funcation used for basic mobile responsive layout */
#hello-world-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    height: 100vh;
}

p {
    font-size: 2em;
    color: white;
}

h1 {
  font-size: 1.5em;
    color: yellow;
}

h2 {
  font-size: 1.5em;
    color: pink;
}

#angry-face {
    color: #990099;
    font-size: 10em;
}

.row {}

.col-sm-6 {
    height: 100vh;
}

#hello-world-column1 {
    background-image: url("images/ocean.jpg");
    background-size: cover;
}

#hello-world-column2 {
    background-image: url("images/forest.jpg");
    background-size: cover;
}

#iphone {
    border-radius: 10px;
}

#handset {
    border-radius: 20px;
    border: 5px solid  #FFCCCC;
}

#iphone2 {
    border: 5px solid black;
}

#handset2 {

}

img {
    width: 100%;
    height: auto;
    border-radius: 50% !important;
}

img.danger {
    border: 1px solid red;
}
