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

body {
  width: 100%;
  margin: 0px;
  font-family: 'Montserrat', sans-serif;
  line-height: 24px;
}

.header {
  width: 100%;
  padding: 0.5% 10%;
  background-color: rgb(3, 85, 179);
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5% 12px;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  margin: auto;
}

.navbar-toggler {
  color: white;
}

nav a {
  text-decoration: none;
  color: white;
  margin-right: 20px;
}

nav a:hover {
  color: rgb(158, 175, 255);
}

main {
  width: 100%;
  padding: 2% 10%;
  min-height: 90vh;
  background-color: rgb(234, 243, 255);
}

#my-project {
  padding: 5% 0%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#home {
  padding: 0%;
}

.profile {
  padding: 5% 15%;
  text-align: center;
  align-items: center;
  background-color: white;
}

.profile-image {
  display: flex;
  background: url('../img/profile.jpg');
  background-position: center;
  background-size: cover;
  width: 300px;
  max-width: 100%;
  height: 300px;
  margin: auto;
  border: 0px solid black;
  border-radius: 50%;
}

.profile-title {
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
  padding-top: 30px;
}

.profile-sub-title {
  font-size: 20px;
  padding-bottom: 20px;
}

.profile-description {
  font-size: 16px;
  font-weight: 300;
}

.left-info {
  padding: 5%;
  background-color: rgb(247, 242, 242);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.right-info {
  padding: 5% 5% 5% 5%;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info-image {
  background-position: center !important;
  background-size: cover !important;
  width: 300px;
  height: 300px;
  margin: auto;
  border: 0px solid black;
  border-radius: 50%;
}

.info-title {
  color: black;
  font-size: 24px;
  font-weight: bold;
  margin: 24px 0px;
}
.info-description {
  color: black;
  font-size: 16px;
  font-weight: 300;
  padding: 0px 20px;
}

.card {
  width: 46%;
  padding: 25px;
  min-height: 250px;
  margin: 2%;
  background-color: #fff;
  border: 2px solid rgb(23, 8, 160);
  border-radius: 10px;
  box-shadow: -2px 10px 38px -17px rgba(0, 0, 0, 0.75);
  transition: box-shadow 300ms;
}

@media(max-width: 800px){ 
  .card {
    width: 100%;
  }
}

.card:hover {
  box-shadow: 5px 5px 20px 10px rgb(0, 0, 0, 0.5);
}

.card-title {
  color: black;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

.card-description {
  color: black;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

button {
  width: 150px;
  margin: 20px;
}

.button-code {
  background-color: rgb(3, 85, 179);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  padding: 10px;
  border: 2px solid none;
  border-radius: 10px;
  margin-bottom: 0px;
}

.button-code:hover {
  background-color: rgb(13, 142, 202);
}

.button-view {
  background-color: rgb(2, 92, 32);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  padding: 10px;
  border: 2px solid none;
  border-radius: 10px;
  margin-bottom: 0px;
}

.button-view:hover {
  background-color: rgb(4, 136, 26);
}
