*, *::before, *::after {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
/*set up of grid and background image*/
.container {
    display:grid;
    grid-template-columns: 3fr 1fr;
    grid-template-areas:
        "header sidebar1"
        "main sidebar2"
        "footer sidebar3";
    height: 100vh;
    width: 100%;
    margin: 0;
    position: relative; 
}

.container::after {    
          content: "";
          background-image: url('assets/springpic2.jpg');
          background-size: cover;
          background-repeat: no-repeat;
          position: fixed;
          top: 0px;
          right: 0px;
          bottom: 0px;
          left: 0px;
           opacity: .7; 
           z-index: -1;
}

/* header info */
.header {
    grid-area: header;
    font-family: 'Kiwi Maru', serif;
    justify-content: center;
    align-content: flex-end;
    margin: 75px;
    margin-bottom: 150px;
    border-radius: 25px;
    background-color: hsl(0, 0%, 100%, .3);
    text-align: center;
    font-size: 40px;
    padding: 25px;
}

/* navigation links */
.titles {
    grid-area: main;
    background-color: hsl(0, 0%, 100%, .3);
    border-radius: 25px;
    justify-content: center;
    align-content: center;
    margin: auto;
    text-align: center;
    font-family: 'Kiwi Maru', serif;
    font-size: 30px;
    padding: 25px;
}

a {
    font-family: 'Kiwi Maru', serif;
    text-decoration: none;
    transition: 0.5s; 
    color: #000
}

a:hover {
    color: hsl(290, 100%, 48%);
    letter-spacing: 2px;
    font-size: 50px;
}


/* logo on bottom */
.footer {
    /* align-self:center; */
    margin-bottom: 15px;
    margin-left: 15px;
    /* align-items:center;
    justify-content: center; */
    position: fixed;
    bottom: 0;
    width: 100%;
    
}

.circle { 
    display: inline-block;
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    padding: 5px;
    background: hsl(0, 0%, 100%, .3);
    text-align: center;
    line-height: 1;
    box-sizing: content-box;
    white-space: nowrap;
    justify-content: center;
  }
 

.name {
    font-size: 25px;
    color: #000;
    font-family: 'Kiwi Maru', serif;
    
}

.slogan {
    font-size: 20px;
    color:hsl(290, 100%, 48%);
    font-family: 'Caveat', cursive;
    
}


/* pictures on side */
.sidebar1 {
    grid-area: sidebar1; 
}

.sidebar2 {
    grid-area: sidebar2;
}

.sidebar3 {
    grid-area: sidebar3;
}

.img1 {
    height: 200px;
    width: 200px;
    transform: rotate(25deg);
    padding: 0;
    display:inline-block;
    margin-top: 149px;
    margin-right: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
    border-radius: 25px;
    box-shadow: 20px 20px 10px hsl(0, 100%, 0%, .5);  
    
}

.img2 {
    height: 200px;
    width: 200px;
    transform: rotate(-25deg);
    padding: 0;
    display:inline-block;
    margin-top: 0px;
    margin-right: 50px;
    margin-bottom: 100px;
    margin-left: 50px;
    border-radius: 25px;
    box-shadow: 20px 20px 10px hsl(0, 100%, 0%, .5);    
    
}

.img3 {
    height: 200px;
    width: 200px;
    transform: rotate(25deg);
    padding: 0;
    display:inline-block;
    margin: 0px 50px 149px 50px;
    border-radius: 25px;
    box-shadow: 20px 20px 10px hsl(0, 100%, 0%, .5);  
}

.thumbnail{
    position: relative;
    z-index: 0;
}

.thumbnail:hover{
    background-color: transparent;
    z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    /* background-color: lightyellow; */
    padding: 5px;
    left: -1000px;
    /* border: 1px dashed gray; */
    visibility: hidden;
    color: black;
    text-decoration: none;
    }
    
    .thumbnail span img{ /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
    height: 376px;
    width: 500px;
    }
    
    .thumbnail:hover span{ /*CSS for enlarged image on hover*/
    visibility: visible;
    top: 75px;
    left: 60px; /*position where enlarged image should offset horizontally */
    
    }




