html {
    background-color: white;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    margin: 3vw;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.topbuttons {
    background-color: #8C0000;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 50px;
    animation-name: marginAnimation;
    animation-duration: 1.5s;
}

.navigation:link {
    color: white;
    text-decoration: none;
    background-color: #8C0000;
    border-radius: 5px;
    font-size: 22px;
    margin-right: 4px;
    padding: 4px;
}

.navigation:visited {
    color: white;
    text-decoration: none;
}

.navigation:hover {
    background-color: #c60b0bfc;
}

.mainbody {
    padding: 10px;
    background-color: #8C0000;
    border-radius: 10px;
    margin-bottom: 20px;
    background-attachment: local;
    animation-name: paddingAnimation;
    animation-duration: 1.5s;
    padding-left: 10vw;
    padding-right: 10vw;
}

.TagLine {
    font-size: 50px;
    font-weight: 1000;
    text-align: center;
}

.content {
    font-size: 25px;
    text-align: center;
}

.socialmedia {
    background-color: #8C0000;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;

}

.Logo {
    width: 25px;
    height: 25px;
    padding-left: 7px;

}

.navigation1:link {
    color: white;
    text-decoration: none;
    background-color: #8C0000;
    border-radius: 5px;
    font-size: 22px;
    padding: 4px;
}

.navigation1:visited {
    color: white;
    text-decoration: none;
}

.navigation1:hover {
    background-color: #c60b0bfc;
}

@keyframes marginAnimation {
    from {
        margin-bottom: 100px;

    }

    to {
        margin-bottom: 50px;

    }
}

@keyframes paddingAnimation {
    from {
        padding-top: 100px;

    }

    to {
        padding-top: 10px;

    }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------- */

@media (max-width : 600px) {
    .mainbody {
        animation-name: paddingAnimation1;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .content {
        font-size: 18px;
        text-align: center;
    }

    .navigation:link {
        color: white;
        text-decoration: none;
        background-color: #8C0000;
        border-radius: 5px;
        font-size: 18px;
        margin-right: 4px;
        padding: 2px;
    }

    .navigation1:link {
        color: white;
        text-decoration: none;
        background-color: #8C0000;
        border-radius: 5px;
        font-size: 18px;
        padding: 3px;
    }

    .topbuttons {
        background-color: #8C0000;
        padding-top: 5px;
        padding-bottom: 5px;
        display: flex;
        justify-content: center;
        border-radius: 10px;
        margin-bottom: 30px;
        animation-name: marginAnimation1;
    }

    .TagLine {
        font-size: 40px;
        font-weight: 1000;
        text-align: center;
    }

    @keyframes marginAnimation1 {
        from {
            margin-bottom: 100px;

        }

        to {
            margin-bottom: 30px;

        }
    }

    @keyframes paddingAnimation1 {
        from {
            padding-top: 100px;

        }

        to {
            padding-top: 10px;

        }
    }
}