* {
    margin: 0;
    padding:0;
}
svg{
    display: none;
}
body{
    font-family: 'Roboto', sans-serif;
    display: block;
    max-width: 100%;
    overflow-x: hidden;
}
header {
    font-size: 10vw;
    text-align: center;
    margin-top: 3vh;
    color: honeydew;
}
h2{
    color: honeydew;
    text-shadow: #000022 3px 3px;
    text-align: center;
    font-size: 5vw;
    width: 100%;
}
.Regular {
    display: block;
    padding: 1vw;
    font-size: 5vw;
    width: 40vw;
    color: #006cd6;
    text-decoration: none;
    text-align: center;
    background-color: #111111;
    margin-left: 0.75vh;
    margin-right: 0.75vh;
    border-radius: 15px;
    margin-top: 2vh;
    animation: onHoverLeave 0.5s forwards;
}
.Regular:hover{
    animation: onHoverEnter 0.5s forwards;
}
.BackGroundBlock{
    display: inline-block;
    background-color:#181818;
    border-radius: 25px;
    animation: OnLeaveBigBody 0.5s forwards;
}
.TopNav{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.NavGroup{
    width: fit-content;
    height: fit-content;
    padding: 15px;
    background:#232323;
    border: 0.3vw solid #232323;
    border-radius: 50px;
    animation: OnLeaveBigBody 0.5s forwards;
    /* box-shadow: #111111 5px 5px ; */
}
.NavGroup:hover{
    animation: OnHoverBigBody 0.5s forwards;
}
.ImgBox{
    display: flex;
}
footer{
    display: block;
    color: honeydew;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    font-size: 125%;
    width: 100%;
    text-align: center;
    background-color: #121212;
}
.ExternalLinks {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 5vh;
}
.TableLinks{
    padding: 1vw;
}

.BackGroundBlock:hover{
    animation: OnHoverBigBody 0.5s forwards;
}
.BackgroundImage{
    content: ' '; 
    position: fixed; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    width: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@keyframes OnHoverBigBody {
    0%{
    }
    100%{
        box-shadow: #111111 5px 5px;
        background-color:#232323;
    } 
}
@keyframes OnLeaveBigBody {
    0%{
        box-shadow: #111111 5px 5px;
    }
    100%{
    }
}
@keyframes onHoverEnter {
    0%{
        background-color: #404040;
    }
    100%{
        transform: translate(-3px,-3px);
        background-color: #404040;
        box-shadow: #111111 5px 5px;
    }
}
@keyframes onHoverLeave {
    0%{
        transform: translate(-3px,-3px);
        background-color: #404040;
        box-shadow: #111111 5px 5px;
    }
    100%{
    }
}
@media screen and (min-width:1280px) {
    header {
        font-size: 3vw;
    }
    h2{
        font-size: 2vw;
    }
    .Regular{
        display: inline-block;
        width: 15vw;
        font-size: 1.75vw;
        margin-top: 1vh;
        /* border:0.2vw solid  ; */
    }
    svg{
        display: block;
    }
}