html {
    height: 100%;
}

body {
    background-color: #6E8898;
    margin: 0;
    border: 0;
    font-family: "Libre Baskerville", sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 50px;
}

.banner {
    height: 100px;
    background-color: #2E5266;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.container {
    margin: 0 auto;
}

.text {
    padding: 30px;
    color: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.textboxes {
    border-radius: 20px;
    background-color: #9FB1BC;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.photo {
    width: 20%;
    padding-right: 60px;
    padding-top: 45px;
    height: auto;
    float: right;
    align-self: baseline;
    position: relative;
}

.footer {
    background-color: #333;
    color: #fff;
    margin-top: auto;
    margin-bottom: 20px;
    width: 100%;
}

.footer p {
    font-size: 20px;
    bottom: 0;
    margin-left: 50px;
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* LinkedIn */
.fa-linkedin {
  background: #0072B1;
  color: white;
}

/* GitHub */
.fa-github {
  background: #000000;
  color: white;
}
