@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

html {
    box-sizing: border-box;
}
  
 /* Basic styling */
body {
    font-family: 'Monserrat', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    background-size: cover;
    width:100%;
  }

header {
    color: #f4f4f4;
    text-align: left;
    padding: 5px 5px;
    margin: 0;
  }

  nav {
    text-align: center;
    margin-bottom: 5px;
    font-family: 'Monserrat', sans-serif;
  }

  .dropdown {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100vw;
    cursor: pointer;
    background-color: #0449aa;
    font-size: 25px;
  }

  .dropbtn {
    background-color: #0449aa;
    color: white;
    padding: 16px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    border: none;
  }
  
  .dropdown-content {
    display: none;
    text-align: center;
    position: absolute;
    background-color: #a7a7a7;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 100%;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: rgb(18, 45, 144);}
  
ul {
    display: flex;
    justify-content: space-evenly;
  }

h1 {
    text-align: center;
    font-size: 50px;
    margin-top: 20;
    padding-top: 30px;
}

h2 {
    font-size: 50px;
    display: flex;
    justify-content: center;
}

h3 {
    display: flex;
    justify-content: center;
  }

img {
    border-radius: 5px;
    width: 250px;
    height: 350px;
 }

 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
li {
    font-size: 30px;
    padding: 5px;
    list-style-type: none;
  }

.container {
    background-image: url('https://images.unsplash.com/photo-1627398242454-45a1465c2479?q=80&w=1548&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    margin: 0;
    border-radius: 3px;
    background-size: cover;
  }

p {
    font-size: 30px;
}
  
#skills {
    background-image: url(https://media.istockphoto.com/id/1435226158/photo/circuit-board-background-computer-data-technology-artificial-intelligence.jpg?s=1024x1024&w=is&k=20&c=tqmT0pKYG9E3-8-QbmEkboNXHLOmn0iPtS1odzGwoUM=);
    font-size: 15px;
    padding: 1.5em;
    width: 100%;
  }

.project-container {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 15px;
}

.project-container img{
  box-shadow: 5px 10px 10px rgba(0,0,0,0.8);
}
 
.project-container p {
  font-weight: bold;
  font-size: 25px;
}
 
#contact-me {
    display: flex;
    justify-content: space-evenly;
    font-size: large;
    font-family: 'Monserrat', sans-serif;
  }

.social {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    font-size: 30px;
    color: dodgerblue;
  }
  
footer {
    margin-top: 5px;
    font-size: 15px;
    color: rgb(238, 244, 247);
    background-image: url(https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  }
  
footer, p {
      font-size: 18px;
      display:flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }

@media (min-width:319px) and (max-width:600px){
    .project-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
  }