body{
    background-image: linear-gradient(to bottom, blue, blueviolet) ;
    background-color: transparent;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.nav-link{
    margin: 3px;
    border: 1px;
    font-size: large;
    color: white;
    background-color: rgb(15, 15, 205);
}
.nav-link:hover{
    background-color: white;
}
.nav-link:active{
    background-color: rgb(100,100,200);
}
.navbar-brand{
    padding: 5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: white;
    color: rgb(15, 15, 205);
}
.navbar-brand:hover{
    padding: 5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: white;
    color: rgb(36, 36, 143);
}
.navbar{
    background-color: rgb(47, 47, 196);
}
.home-container{
    background-repeat: no-repeat;
    background-image: url("./Photo-Index.jpeg");
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.content{
    margin-top: 10px;
    margin-left: 5vw;
    color: white;
    animation-name: start-animate;
    animation-duration: 2s;
}
@keyframes start-animate {
    from {
        margin-left: 20vw;
        color: yellowgreen;
    }
    to {color: white;}
}
.content h1{
    font-size: 13vmin;
    animation-name: color-change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
@keyframes color-change{
    0% {color: black;}
    50% {color: rgb(36, 36, 143);}
    100% {color: black;}
}
.content p{
    font-size: 4vmin;
}
footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    color: yellow;
    background-color: rgb(15, 15, 205);
}
.images-main{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.image-main{
    max-width: 100vw;
    height: auto;
}
