hr {
    position: absolute;
    bottom: 7.5%;
    z-index: 1000;
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: #2c2f3354;
}

.links {
    position: absolute;
    top: 30%;
    width: 100%;
    z-index: 1000;
    vertical-align: top;
    display: flex;
    justify-content: center;
    animation: calFadeIn 3s;
    -moz-animation: calFadeIn 3s;
    /* Firefox */
    -webkit-animation: calFadeIn 3s;
    /* Safari and Chrome */
    -o-animation: calFadeIn 3s;
    /* Opera */
}

.links ul {
    list-style: none;
    margin: 0 auto;
}

.links li {
    float: left;
    margin-right: 100px;
}

.links a {
    margin: 0 2%;
    text-decoration: none;
}

.links img {
    width: 45px;
    z-index: 100;
    position: absolute;
    top: 4px;
    transition: all 0.25s;
}

.links .discord img {
    top: 2.5px;
}

.links .gmod img {
    filter: brightness(0.25);
}

.links img:hover {
    width: 50px;
    transition: all 0.25s;
}

.links .gmod img:hover {
    width: 45px;
}

#bottomtext {
    position: absolute;
    top: auto;
    bottom: 0;
    font-size: 20px;
    color: #99AAB580;
    width: 90%;
}

#bottomtext a {
    text-decoration: none;
    color: #99AAB580;
}

#bottomtext a:hover {
    text-decoration: underline;
}

.playercounter {
    position: absolute;
    top: auto;
    bottom: 7.5%;
    font-size: 25px;
}

.playercounter a {
    color: #99AAB580;
    text-decoration: none;
}

.playercounter a:hover {
    text-decoration: underline;
}

.contact {
    position: absolute;
    top: 2%;
    left: auto;
    right: 2%;
    font-size: 20px;
    text-align: right;
    transform: translate(0, 0);
}

.contact a {
    color: #99aab50e;
    text-decoration: none;
}

.contact a:hover {
    color: #99aab53a;
    text-decoration: underline;
}

.contacthome a {
    color: #99AAB580;
    text-decoration: none;
}

.contacthome a:hover {
    color: #99AAB580;
    text-decoration: underline;
}

.mailstring {
    position: absolute;
    top: auto;
    bottom: 7.5%;
    font-size: 25px;
    color: #99AAB580;
}

#title {
    top: 25%;
    left: 50%;
    animation: calMoveIn 2.5s, calFadeIn 3s;
    -moz-animation: calMoveIn 2.5s, calFadeIn 3s;
    /* Firefox */
    -webkit-animation: calMoveIn 2.5s, calFadeIn 3s;
    /* Safari and Chrome */
    -o-animation: calMoveIn 2.5s, calFadeIn 3s;
    /* Opera */
}

#subTitle {
    top: 40%;
    left: 50%;
    font-size: 30px;
    color: #dae9f3b0;
    animation: calPulseFade 3s infinite;
    -moz-animation: calPulseFade 3s infinite;
    /* Firefox */
    -webkit-animation: calPulseFade 3s infinite;
    /* Safari and Chrome */
    -o-animation: calPulseFade 3s infinite;
    /* Opera */
}

.packages > ul {
    float: left;
    padding: 0;
    color: white;
}

.packages > ul > li {
    position: relative;
    border-radius: 4px;
    background-color: #56585a30;
    margin: 0px 50px 0px 50px!important;
    height: 50vh;
    width: 15vw;
    transition: ease-in-out 0.2s;
}

.packages > ul> li > h2 {
    position:absolute;
    width:100%;
    bottom:0;
    text-align:center;
}

.packages > ul > li:hover {
    cursor: pointer;
    background-color: #56585a50;
}

@media(max-width: 1014px) {
    #subTitle {
        top: 43%;
    }
}

@media(max-width: 860px) {
    #bottomtext {
        display: none;
    }
    .links {
        top: 35%;
    }
    #subTitle {
        top: 48%;
    }
}

@media(max-width: 522px) {
    #subTitle {
        top: 53%;
    }
}

@media(max-width: 432px) {
    .links {
        top: 42%;
        transform: translate(0, -50%);
    }
    #subTitle {
        top: 58%;
    }
}

@keyframes calMoveIn {
    from {
        top: 10%;
    }
    to {
        top: 25%;
    }
}

@keyframes calPulseFade {
    0% {
        opacity: 0.25;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}