body{
    background-color: gray;
}

#topHeader {
    height: 12vh;
    width: 100%;
    background-image: linear-gradient(to right, palevioletred, pink);
    position: fixed;
    left: 0px;
    top: 0px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
}

#logo {
    height: 100%;
    width: auto;
    margin-right: 15px;
    top: 0px;
}

#endLine{
    background-color: black;
    height: 10px;
    width: 100%;
    position: absolute;
    bottom: 0px;
}

#topText {
    font-size: 4vh;
}

.photo-grid {
    margin-top: 14vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card{
    margin: 10px;
    width: 30vw;
    border: solid black 5px;
}

.card:hover{
    background-color: lightgray;
}