img {
    height: 120px;
    width: 113px;
    border-radius: 47%;
    border-style: solid;
    border-width: 5px;
    margin-top: 50px;

}

.name {
    margin-top: 70px;
    justify-items: center;
    text-align: center;
}

.name:hover {
    transform: scale(110%);
    transition-duration: 0.5s;
    color: rgb(219, 162, 93);
    -moz-transition-duration: 0.5s;
}

.role {
    line-height: 20px;
}

#altschool_id {
    color: white;
    text-align: center;
}


/* hover is for when cursor within the elements react in certain ways specified*/

img:hover {
    transform: scale(120%);
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -moz-transform: scale(120%);
}

.role:hover {
    transform: scale(110%);
    transition-duration: 0.5s;
    color: rgb(219, 162, 93);
    -moz-transition-duration: 0.5s;
}

.role span {
    font-size: smaller;
}

.role h2 {
    text-align: center;
}

.project_title:hover {
    transform: scale(110%);
    transition-duration: 0.5s;
    color: rgb(219, 162, 93);
    -moz-transition-duration: 0.5s;
}

.project_title {
    margin: auto;
    text-align: center;
}

.pitch {
    text-align: center;
    justify-items: center;
}

.pitch:hover {
    transform: scale(110%);
    transition-duration: 0.5s;
    color: rgb(219, 162, 93);
    -moz-transition-duration: 0.5s;
}

.pitch span {
    color: rgb(57, 57, 207);
    font-size: larger;
}

.bio {
    text-align: center;
    font-weight: 700;
    width: 75%;
    justify-items: center;
    justify-content: center;
    margin: auto;
}

.bio:hover {
    transform: scale(102%);
    transition-duration: 0.5s;
    color: rgb(219, 162, 93);
    -moz-transition-duration: 0.5s;
}

.skills {
    text-align: center;
    font-weight: 700;
}

.skills:hover {
    transform: scale(102%);
    transition-duration: 0.5s;
    color: rgb(219, 162, 93);
    -moz-transition-duration: 0.5s;
}

.projects {
    text-align: center;
    font-weight: 700;
}

.projects:hover {
    transform: scale(102%);
    transition-duration: 0.5s;
    color: rgb(219, 162, 93);
    -moz-transition-duration: 0.5s;
}

.education {
    text-align: center;
    font-weight: 700;
    margin-bottom: 100px;
}

.education:hover {
    transform: scale(102%);
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    color: rgb(219, 162, 93);
}


/*changes background images at interverls specified by %*/

@keyframes images {
    0% {
        background-image: url(image5.png);
        color: white;
    }
    25% {
        background-image: url(image1.jpg);
        color: white;
    }
    45% {
        background-image: url(image3.jpg);
        color: black;
    }
    75% {
        background-image: url(image4.jpg);
        color: aliceblue;
    }
    100% {
        background-image: url(image5.png);
        color: white;
    }
}


/* The element to apply the animation to */

body {
    animation-name: images;
    animation-duration: 20s;
    -moz-animation-duration: 20s;
    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: reverse;
    -moz-animation-direction: reverse;
    justify-items: center;
    color: rgb(203, 129, 37);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
}

@media (min-width: 600px) {
    body {
        flex-direction: row;
        justify-content: center;
    }
    body {
        margin: 0 1rem;
    }
    body {
        max-width: 800px;
        margin: auto;
    }
}
