:root {
    --background: #fffffe;
    --base-text: #272343;
    --border: #e3f6f5;
}

* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

h1, li, a, p {
  font-family: "Poppins", serif;
  font-size: 17px;
}

.page-container {
  position: relative;
  min-height: 100vh;
} 

.content-wrap {
  padding-bottom: 2rem;
}

header { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}


.navigation {
    display:inline-flex;
    justify-content: right;
    font-size: 17px;
    margin: 0;
}

.name {
  display: inline-flex;
  align-items: center;
  justify-content: left;
  font-size: 22px;
  font-family: "Poppins", serif;
  color: var(--base-text);
  margin: 0;
  cursor:default;
}

.nav-links {
    list-style: none;
    margin-right: 30px;
    display: inline-flex;
} 

.nav-links a {
    text-decoration: none;
    color: var(--base-text);
    padding-right: 17px;
}

.nav-links a:hover {
    color: #45b1cc;
}  

.gallery {
  align-items: center;
}

img {
  margin: 7px 10px;
}

.row {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    padding: 1px 4px;
    justify-content: center;
    width: 100%;
} 

.column {
    flex: 25%;
    max-width: 30%;
    padding: 1px 4px;
} 

.column img {
    vertical-align: middle;
    width: 100%;
  }

  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  } 

  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    } 
  }  

  footer {
    margin-top: 10px;
    margin-bottom: 17px;
    text-decoration: none;
    color: var(--base-text);
    position: absolute;
    bottom: 0;
    width: 100%; 
    text-align: center;
    height: 2rem;
  } 

  .underconst {
    text-align: center;
    margin: 30px;
  } 

  .underconst a {
        color: #45b1cc;
  }
  
  .about-container {
    display:flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    align-content: center;
    margin-right: 10%;
    margin-left: 10%;
  }  

  .self-portrait {
    max-width: 400px;
    max-height: 400px;
    align-self: center;
  }  

  .about-txt {
    padding: 10% 10% 10% 5%;
    justify-self: left;
  }

 