/* About me body style */
body {
    background-image: url('../images/background3.jpg');
}

.nav-wrapper {
    background-color: #37474f;
    box-shadow: 0 0 5px black;
}

.brand-logo {
    margin-left: 5px;
}

 h1 {
    text-align: center;
    color: transparent;
    animation-name: h1;
    animation-duration: 5s;
    animation-fill-mode: forwards;
  }
  
  @keyframes h1 {
    from {color: transparent;}
    to {color: #546e7a;}
  }

.card-panel {
    box-shadow: 0 0 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 240, .7);
}

.image {
    float: left;
    margin: 15px;
}

.hover:hover {
    opacity: 75%;
}

/* Font-size for about me text */
p {
    font-size: large;
    color: #546e7a;
    animation-name: p;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

@keyframes p {
    from {color: transparent;}
    to {color: #546e7a;}
  }