.con1{
    width: 100%;
    padding: 1rem 40px;
    box-sizing: border-box;
    background-color: white;
    margin-top: 2rem;
}
.alert{
    width: 100%;
    padding: 1rem 0;
    background-color: #FCF8E3;
    color: #C09853;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Electrolize', sans-serif;
}
.fluidTop{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 0.8rem;
}
.row-fluid{
    border: 2px solid #3F8831;
    background-color: #58AE47;
    color: white;
    font-family: 'Russo One', sans-serif;
    text-align: center;
    padding: 1rem 0;
    width: 49%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
}
.row-fluid:hover{
    color: #DFDCE0;
}
.fluidBottom{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.fluidBottom>div{
    margin-bottom: 1rem;
}
.scrollingText{
    color: darkgrey;
    font-family: 'Luckiest Guy', cursive;
    font-size: 4rem;
}
.con2{
    width: 100%;
    padding: 2rem 40px;
    box-sizing: border-box;
    background-color: white;
    margin-top: 2rem;
}
.updateTitle{
    color: #717274;
    font-size: 2rem;
    font-family: 'Electrolize', sans-serif;
    margin: 2rem 0 1rem 0;
}
.con1Text{
    font-size: 1.3rem;
    font-family: 'Karla', sans-serif;
    color: #717278;
}
.con1Text>a{
    color: #02C1F3;
    transition: all 0.3s;
}
.con1Text>a:hover{
    color: #58AF47;
}
.subtitle{
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Electrolize', sans-serif;
}
.con1Banner{
    width: 90%;
    margin:2rem auto;
}
.con1Banner>img{
    width: 100%;
    display: block;
}
.myLink{
    margin: 1rem 0;
}
.goTop{
    width: 3rem;
    position: fixed;
    right: 20px;
    bottom: 100px;
    cursor: pointer;
    animation: goTop 2s linear infinite alternate;
}
@keyframes goTop {
    0%{
        bottom: 100px;
    }
    25%{
        bottom: 110px;
    }
    50%{
        bottom: 100px;
    }
    75%{
        bottom: 90px;
    }
    100%{
        bottom: 100px;
    }
}
.goTop>img{
    width: 100%;
}
@media screen and (max-width: 960px){
    .con1Banner{
        width: 100%;
    }
}

