* {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
}

header {
    height: 100%;
    background-image: url(../images/indexBack.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .titleDiv {
    color: rgb(0, 0, 0);
    background-color: rgba(165, 42, 42, 0.861);
    font-family: 'Titillium Web', sans-serif;
    color: rgb(255, 255, 255);
    border-radius: 50px;
    border: 1px solid black;
}

.arrow,
.arrow:before {
    position: absolute;
    left: 50%;
}

.arrow {
    width: 40px;
    height: 40px;
    top: 90%;
    margin: -20px 0 0 -20px;
    transform: rotate(45deg);
    border-left: none;
    border-top: none;
    border-right: 3px rgb(165, 42, 42) solid;
    border-bottom: 3px rgb(165, 42, 42) solid;
}

.arrow:before {
    content: '';
    width: 20px;
    height: 20px;
    top: 50%;
    margin: -10px 0 0 -10px;
    border-left: none;
    border-top: none;
    border-right: 1px rgb(165, 42, 42) solid;
    border-bottom: 1px rgb(165, 42, 42) solid;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: arrow;
}

@keyframes arrow {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-10px, -10px);
    }
}

main {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    
}

main .getClass{
    background: rgb(28, 141, 234);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

main .getClass2{
    background: rgba(141, 200, 248, 0.68);
    text-align: center;
    vertical-align: middle;
}
main .postClass{
    background: rgb(24, 235, 98);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

main .postClass2{
    background: rgb(141, 252, 141);
    text-align: center;
    vertical-align: middle;
}
main .putClass{
    background: rgb(241, 204, 20);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

main .putClass2{
    background: rgb(239, 216, 104);
    text-align: center;
    vertical-align: middle;
}
main .delClass{
    background: rgb(216, 16, 16);
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}

main .delClass2{
    background: rgb(233, 91, 91);
    text-align: center;
    vertical-align: middle;
}

main .right{
    text-align: left;
}

footer {
    min-height: 100px;
    background: rgb(165, 42, 42);
    display: flex;
    justify-content: center;
    align-items: center;
}