:root {
    --primary-color:#b55a30;
    --secondary-color:#009999 ;
    --tertiary-color: whitesmoke;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: cursive, Arial, Helvetica, sans-serif;
  color: var(--tertiary-color);
  background-color:var(--primary-color);
}
header {
 margin: 0 auto;
 padding:30px;
  background: linear-gradient(to bottom, var(--secondary-color) 0%, #ff9966 100%);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
header h1 {
 margin-top: 20px;
  font-weight: bold;
  font-size: 80px;
  text-shadow:2px 2px var(--primary-color);
}
header nav ul li {
    padding-top: 20px;
  display: inline-block;
}
header a {
  text-shadow:2px 2px var(--primary-color);
  color: white;
  font-size: 30px;
  margin-right: 60px;
}
header img {
  width: 350px;
  height: 400px;
  border-style: 3px solid;
  border-radius: 50%;
}

/* ABOUT ME SECTION */
.intro {
  padding-bottom: 50px;
  text-align: center;
  font-size: 30px;
}

.intro p {
    line-height: 1.7;
    width: 80%;
    font-size: 30px;
    margin: 0 auto;
    text-align: center;
}
container {
    display:flex;
    flex-direction: column;
}
/* my work */
.work {
  padding: 30px;
}

.work div {
  display: flex;
  justify-content: space-around;
  padding-top:20px;
}
.work img {
  height: 300px;
  width: 600px;
  border:3px solid;
  border-radius: 30px;
  border-color: var(--tertiary-color);
}
 h2 {
  text-shadow:2px 2px var(--secondary-color);
  text-align: center;
  font-size: 50px;
  
}

div h3 {
  position: absolute;
  padding-bottom: 8px;
  padding-left: 16px;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  font-size: 30px;
  border: solid;
  border-color: var(--secondary-color);
  border-radius: 30px;
}
.work img:hover {
  height: 405px;
  width: 905px;
  border: 3px solid;
  border-radius: 30px;
  border-color: var(--secondary-color);
}
footer {
  background: linear-gradient(to top, var(--secondary-color) 0%, #ff9966 100%);
  width: 100%;
  padding: 40px 30px;
 
}
footer h2 {
    text-align:center;
    font-size: 50px;
    padding-bottom: 30px;
}
footer a {
   padding-left:20%;

    text-shadow:2px 2px var(--primary-color);
    color: white;
    font-size: 30px;
    
}
@media screen and (max-width: 980px) {
    header {
        padding-bottom: 10;
        justify-content: center;
        position: relative;
    }
    header h1 {
        width: 100%;
        text-align: center;
    }
    header nav ul {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
    header  a {
        font-size: 30px;
    }
    .work img {
        height: 200px;
        width: 450px;

    }
    footer h2, footer div {
        text-align: center;
        width: 100%;
    }
    footer a {
        padding-left:15%;
    }
  
    }
   
   
    
    
    