/* Global */
*{
  margin: 0px;
  padding: 0px;
  border: 0px;
  outline: 0px;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

html {
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
}

body {
  width: 80%;
  margin: auto;
}

h1 {
  font-size: 42px;
  font-weight: 600;
  color: #17191a;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  color: #17191a;
}

h5 {
  font-size: 24px;
  margin-top: 8px;
  color: #17191a;
}

p {
  color:#8f9ea5;
  opacity: 0.8;
  font-weight: 100;
  margin-top: 8px;
  font-size: 24px;
}

button {
  width: fit-content;
  padding: 0;
}

ul {
  list-style-type: none;
}

.btn-primary {
  width: fit-content;
  padding: 12px;
  background-color: #00B0FF;
  margin: 16px;
  border-radius: 8px;
  color: #ffffff;
}

.row{
  display:flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  justify-content: space-around;
}

/* Nav section */
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100px;
  justify-content: space-between;
}

.navbar-nav {
  align-items: center;
  display: flex;
}

.bg-light {
  display: flex;
  justify-content: space-between;
}

.nav-list ul {
  align-items: center;
  margin-bottom: 0px;
}

.nav-list {
  display: flex;
}

.nav-item {
  list-style: none;
  margin: 10px;
}

.nav-link{
  text-decoration: none;
}

.logo {
  margin: 10px;
}

/* Hero section */
.hero{
  height: 100vh;
}

.landing{
  height: 80vh;
  position: relative;
  align-items: center;
  margin-top: 10%;
}

.landing-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.landing-l{
  max-width: 600px;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-img{
  max-width: 300px;
}

.container {
  padding: 32px;
}

/* About section */

.profile-picture{
  max-height: 340px;
}

.tech-stack{
  display: flex;
  justify-content: space-around;
}

/* Cards*/

.card{
  border-radius: 16px;
  box-shadow: 2px 2px 10px 2px rgba(0,0,0,0.1);
  background-color: #ffffff;
  margin: 1.5rem;
  width: 100%;
  max-width: 440px;
}

.card-title{
  font-size: 2.5rem;
  margin-top: 8px;
  margin-bottom: 8px;

}

.card-subtitle{
  font-size: 1rem;
  color: #a4a4a4;
}

.card-body{
  font-size: 1rem;
  color: #6a6a6a;
  height: 100px;
}

.card-tag-list{
  display: flex;
  color: #00B0FF;
}

.card-tag{
  font-size: .8rem;
  font-weight: 300;
  text-decoration: none;
  margin-right: 8px;
  margin-top: 8px;
}

.card-img{
  max-height: 100%;
  object-fit: contain;
  object-fit: cover;
  width: 100%;
  border-radius: 16px 16px 0px 0px;
}

.card-info{
  padding: 16px;
}

.work-links{
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.read-link {
  font-weight: 400;
  color: #00B0FF;
  text-decoration: none;
}
/* contact section */

.contact {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 12%;
  text-align: center;
}

