@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');

*{
  margin: 0;
  padding: 0;
  font-family: 'Ubuntu', sans-serif;
}

nav{
  background-color: #228DB0;
  position: sticky;
  top: 0;
}

nav a{
  text-decoration: none;
  color: black;
  font-size: 20pt;
}

nav .nav-block{
  padding-top: 15px;
  padding-bottom: 15px;
  margin-right: 15px;
}

.header-img{
  background-image: url('../images/image_1.jpg');
  background-size: 100%;
  background-position: center;
  height: 300px;
  width: 100%;
}

header{
  background-color: #228DB0;
  padding-bottom: 15px;
}

.header-content{
  text-align: center;
}

.logo{
  background-image: url('../images/logo.png');
  background-size: 100%;
  background-position: center;
  height: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  opacity: 1;
}

header h1{
  font-size: 24pt;
  margin-bottom: 15px;
}

header p{
  font-size: 18pt;
}

.project-header{
  text-align: center;
  padding-top: 15px;
}

.project-header h1{
  font-size: 24pt;
}

main :first-child{
  margin-top: 20px;
}

.project{
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
    font-size: 16pt;
}

.project h1{
  font-size: 24pt;
}

.project p{
  margin-top: 15px;
}

.project img{
  margin-top: 10px;
  margin-bottom: 10px;
}

.project a{
  text-decoration: none;
  color: #228DB0;
}

.review-link{
  text-align: right;
}

.review-link a{
  color: #efefef;
  text-decoration: none;
  padding: 15px;
  background-color: #228DB0;
}

footer{
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: #228DB0;
}

footer h1{
  margin-bottom: 15px;
}

footer p{
  font-size: 20pt;
}

@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 480px) {

    nav a{
      font-size: 15pt;
    }

    nav .nav-block{
      padding-top: 15px;
      padding-bottom: 15px;
      margin-right: 15px;
    }

    .header-img{
      height: 150px;
    }

    .logo{
      height: 100px;
      width: 100px;
    }

    header h1{
      font-size: 15pt;
    }

    header p{
      font-size: 12pt;
      margin-left: 15px;
      margin-right: 15px;
    }

    .project-header h1{
      font-size: 15pt;
    }
    
    .project img{
        height: 100%;
        width: 100%;
    }
    
    .review-link{
        margin-top: 15px;
    }
    
    .review-link a{
        padding: 10px;
    }
    
    footer h1{
        font-size: 15pt;
    }
    
    footer p{
        font-size: 12pt;
    }

}
