
#hero {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#hero-title {
    display: grid;
    grid-template-areas: "stack";
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

#hero-title h1 {
    grid-area: stack;
    transform: rotate(-3.5deg);
    z-index: 1;
    color: #333;
    margin-top: 15px;
}

#hero-title img {
    grid-area: stack;
    max-width: 800px;
    width: 100%;
    min-height: 300px;
}

#gofundme {
    position: absolute;
    top: 10vh;
    left: 10vw;
    overflow: hidden;
    transform: rotate(-20deg);
    z-index: 1;
}

#gofundme a{
    display: grid;
    grid-template-areas: "stack";
    text-decoration: none;
}

#gofundme svg {
    display: grid;
    grid-area: stack;
    justify-self: center;
    align-self: start;
    z-index: 1;
    margin-top: 5px;
    width: 80px;
    height: auto;
}

#gofundme:hover svg{
    width: 88px;
}

#gofundme span {
    display: grid;
    grid-area: stack;
    justify-content: center;
    align-items: end;
    margin-bottom: 10px;
    z-index: 1;
    font-weight: bold;
}

#gofundme:hover span {
    font-size: 1em;
}

#gofundme img {
    display: grid;
    grid-area: stack;
    height: 100px;
    justify-content: center;
    scale: 1.5;
}

#gofundme:hover img{
    height: 110px;
}

.logo {
    display: grid;
    grid-template-areas: "stack";
    justify-self: flex-end;
    justify-content: center;
    align-items: center;
}

.logo img {
    grid-area: stack;
    max-width: 200px;
}

.img-top {
    margin-top: 15px;
    z-index: 1;
}

@media screen and (max-width: 360px) {
    #hero-title h1 {
        margin-top: 50px;
    }
}