html, body {
    animation: gradient 15s ease infinite
}
h1 {
    color: white;
    font-family: 'Rubik';;
    font-weight: bold;
    text-shadow: 2px 2px 3px black;
    animation: glow 2s ease-in-out infinite;
    font-size: 70px;
    margin-top: 70px;
}
@keyframes glow {
    0% {
        text-shadow: 2px 2px 3px black;
    }
    50% {
        text-shadow: 0 0 15px white, 0 0 20px white, 0 0 30px white, 0 0 40px white;
    }
    100% {
        text-shadow: 2px 2px 3px black;
    }
}
@media screen and (max-width:1050px) {
    h1 {
        font-size: 3em;
        text-align: center;
        overflow-wrap: break-word;
    }
    .subheader {
        padding-top: 200px;
    }
    .pic {
       height: auto;
       width: 80vw;
    }
    h3 {
        text-align: center;
    }
    p {
        margin-left: 10px;
        max-width: 90vw;
    }
    }

@media screen and (max-width:880px){
    .pic{
        margin-left: 57px;
        margin-left: 23px;
    }
    h1 {
        max-width: 90vw;
        overflow-wrap: break-word;
    }
}
    

h3 {
    color: white;
    font-family: 'Rubik';
    font-size: 50px;
    text-shadow: 2px 2px 2px black;
}
img {
    height: 50%;
    width: 50%;
    float: left;
    padding: 10px;
    border-radius: 30px;
    opacity: 75%;
    margin-right: 10px;
}

p {
    color: white;
    font-family: 'Rubik';
    text-shadow: 1px 1px 1px black;
}
.hr {
    color: white;
}
body {
    position: relative;
}
h4 {
    color: white;
    font-family: 'Rubik';
}
.list-group {
    font-family: 'Rubik';
}