@charset "UTF-8";
body {
    background-color: white;
}

h1 {
    font-family: 'Oxygen', sans-serif;
    color: #7AC5DD;
    font-weight: 700;
}

.picture {
    width: 75%;
    height: 75%;
}

.introduction {
    padding-top: 20%;
}

p {
    font-family: 'Oxygen', sans-serif;
}

p a {
    /* font-family: 'Oxygen', sans-serif; */
    color: #7AC5DD;
    font-weight: 700;
    text-decoration: none;
}
p a:hover {
    color: #212529;
    text-decoration: none;
}

.icons-row i {
    font-size: 2em;
    color: black;
}

.icons-row i:hover {
    color: #7AC5DD;
}

.🐕 {
    animation: walk 1s steps(8) infinite,
        forward 6s linear infinite;
  }
  
@keyframes forward{
    0%{
        transform: translateX(-600px);
    }
    100%{
        transform: translateX(1500px);
    }
}