* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 12;
}

::-webkit-scrollbar {
    width: 0.5rem;
    background-color: rgb(65, 65, 66);
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(95, 95, 95);
    border-radius: 0.5rem;
}

body {
    background-color: black;
}

#BodyP {
    opacity: 1;
}

#BodyP::after {
    position: fixed;
    content: "";
    width: 100%;
    height: 100vh;
    background-image: url(../Files/back.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

nav {
    width: 100%;
    height: 4rem;
    top: 0;
}

#slideNav {
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    opacity: 1;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.692);
}

#ProfileImg {
    background: #111;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    margin-left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(../Files/goglesearch.png);
    background-position: center;
    background-size: cover;
}

#WebsiteName {
    font: caption;
    color: rgba(255, 255, 255, 0.664);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 1.7rem;
    padding-left: 1.2rem;
    font-family: monospace;
}

#QuickBTNP {
    background: rgb(67, 66, 67);
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 1rem;
    right: 1rem;
}

.Dots {
    background: white;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 100%;
    margin: 0 0.17rem;
    transform: 0.5s;
}

.DotsAniUp {
    background: white;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 100%;
    margin: 0 0.17rem;
    animation: DotsUpAni 0.3s 0s ease-in-out 1 both;
}

@keyframes DotsUpAni {
    from {
        height: 00.5rem;
    }
    to {
        width: 0.3rem;
        transform: rotate(45deg) translate(-5px, 3px);
        height: 2rem;
        border-radius: 2rem;
    }
}

.DotsAniUp1 {
    background: white;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 100%;
    margin: 0 0.17rem;
    animation: DotsUpAni1 0.3s 0s ease-in-out 1 both;
}

@keyframes DotsUpAni1 {
    from {
        height: 00.5rem;
    }
    to {
        width: 0.3rem;
        transform: rotate(-45deg) translate(4px, 2px);
        height: 2rem;
        border-radius: 2rem;
    }
}

.DotsAniUpRev {
    background: white;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 100%;
    margin: 0 0.17rem;
    animation: DotsUpAniRev reverse 0.3s 0s ease-in-out 1 both;
}

@keyframes DotsUpAniRev {
    from {
        height: 00.5rem;
    }
    to {
        width: 0.3rem;
        transform: rotate(45deg) translate(-5px, 3px);
        height: 2rem;
        border-radius: 2rem;
    }
}

.DotsAniUp1Rev {
    background: white;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 100%;
    margin: 0 0.17rem;
    animation: DotsUpAni1Rev reverse 0.3s 0s ease-in-out 1 both;
}

@keyframes DotsUpAni1Rev {
    from {
        height: 00.5rem;
    }
    to {
        width: 0.3rem;
        transform: rotate(-45deg) translate(4px, 2px);
        height: 2rem;
        border-radius: 2rem;
    }
}

#QuickLinkWin {
    background-color: rgba(255, 255, 255, 0.808);
    width: 10rem;
    height: 10rem;
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    display: none;
    border-radius: 1rem;
    z-index: 10;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    overflow: hidden;
    border: 2px solid white;
    user-select: none;
    animation: AniQuickWin 0.5s 0s ease-in-out 1 both;
}

@keyframes AniQuickWin {
    to {
        opacity: 1;
    }
}

.QuickLinksItems {
    background-color: rgb(36, 36, 36);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font: caption;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

#content {
    display: flex;
    align-items: center;
    width: 90%;
    height: auto;
    margin: 2rem auto;
    z-index: 9;
    opacity: 1;
    position: relative;
    flex-direction: column;
}

#WelcomePage {
    width: 100%;
    height: 35rem;
    display: flex;
    position: relative;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}

#WelcomeProfile {
    width: 8rem;
    margin-top: 5rem;
}

#WelcomeName {
    font: caption;
    font-size: 3rem;
    color: white;
    margin-top: 2rem;
    font-weight: 500;
    font-family: monospace;
}

#BioTxt {
    color: whitesmoke;
    font: caption;
    font-size: 1.05rem;
    width: 80%;
    margin-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
}

#Front1 {
    width: 100%;
    height: 38rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 4rem 0;
}

#MobileImages {
    width: 20rem;
    height: auto;
    user-select: none;
}

#AboutMobileImg {
    color: white;
    width: 55%;
    height: auto;
    font: caption;
    font-family: monospace;
    font-size: 1.5rem;
    margin: 0 1rem;
    z-index: 1;
}

#fontLink {
    color: rgb(211, 81, 81);
    text-decoration: none;
}

#Front2 {
    width: 100%;
    height: 35rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 4rem 0;
}

#Front3 {
    width: 100%;
    height: 22rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 4rem 0;
}

#WebImage1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40rem;
    height: auto;
    margin-right: 0.5rem;
}

#AboutWeb1 {
    color: white;
    width: 55%;
    height: auto;
    font: caption;
    font-family: monospace;
    font-size: 1.5rem;
    margin: 0 1rem;
    z-index: 1;
}

#Front4 {
    width: 100%;
    height: 5rem;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    align-items: center;
}

#YouTubeRedirector {
    color: white;
    font: caption;
    font-size: 1.5rem;
    /* font-weight: 400; */
    font-family: monospace;
}

#GoYT {
    text-decoration: none;
    color: rgb(211, 81, 81);
}

footer {
    /* background-color: red; */
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-evenly;
    position: relative;
    z-index: 2;
    flex-direction: column;
    background-color: black;
}

#SocialPlate {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 0;
    width: 100%;
    height: auto;
    color: white;
}

.Socials {
    color: white;
    font: caption;
    margin: auto 0.3rem;
    font-weight: 500;
    font-size: 1.2rem;
    text-decoration: none;
    user-select: none;
}

#CopyRight {
    color: white;
    width: 100%;
    height: auto;
    font: caption;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    user-select: none;
}

@media screen and (max-width: 1000px) {
    #WebImage1 {
        width: 30rem;
    }
}

@media screen and (max-width: 800px) {
    #WebImage1 {
        width: 25rem;
    }
}

@media screen and (max-width: 750px) {
    #WebImage1 {
        width: 100%;
    }
    #Front3 {
        flex-direction: column;
        height: auto;
    }
    #AboutWeb1 {
        width: 100%;
        height: auto;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 690px) {
    #MobileImages {
        width: 15rem;
    }
    #AboutMobileImg {
        font-size: 1.3rem;
    }
    #YouTubeRedirector {
        font-size: 1.3rem;
    }
    .Socials {
        font-size: 1rem;
    }
    #CopyRight {
        font-size: 0.8rem;
    }
    #MobileImages {
        width: 12rem;
    }
    #AboutMobileImg {
        font-size: 1rem;
    }
    #AboutWeb1 {
        font-size: 1rem;
    }
    #Front1 {
        height: 25rem;
    }
    #Front2 {
        height: 25rem;
        margin: 0;
    }
    #Front3 {
        height: 25rem;
    }
    #WelcomeName {
        font-size: 2rem;
    }
}

@media screen and (max-width: 400px) {
    .Socials {
        font-size: 0.9rem;
    }
    #Copyright {
        font-size: 0.7rem;
    }
}
