@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');

html {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Roboto Mono', monospace
}

*, *::after, *::before {
    margin: 0;
    padding: 0
}

body {
    display: grid;
    place-items: center;
    height: 100vh;
    background: #000
}

shader-art {
    display: block;
    width: 100vw;
    height: 100vh
}
  
shader-art canvas {
    display: block;
    width: 100%;
    height: 100%
}

#overlay-toggle {
    display: none
}

.overlay {
    z-index: 1;
    background-color: #000000
}

.overlay label {
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vh;
    color: #fff;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem
}

.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw
}

.text-content {
    background: transparent;
    display: grid;
    place-content: center;
    text-align: center;
}

.text-content h1 {
    color: #fff;
    font-family: 'Monsterrat', sans-serif;
    text-shadow: 0 0 0.40em #fff;
    font-size: 3vw;
    font-weight: 800
}

.text-content a {
    transition: 0.5s;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    line-height: 0;
    color: #ccc;
    font-family: 'Roboto Mono', monospace;
    text-decoration: none;
    font-size: 1.2vw
}

.text-content a:hover {
    transition: 0.5s;
    color: #fff;
    text-shadow: 0 0 0.40em #fff
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 0px;
    font-size: 1.3vw;
}

.socials2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    text-align: center;
    padding-top: 0px;
    font-size: 1.3vw;
}

.languages {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    text-align: center;
    padding-top: 20px;
    font-size: 1.3vw;
}

.languages1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    text-align: center;
    font-size: 1.3vw;
}

.cplusplus {
    padding-left: 0px;
}

#overlay-toggle:checked~.overlay {
    animation-fill-mode: forwards;
    animation-name: fade, hide;
    animation-delay: 0s, 600ms;
    animation-duration: 600ms, 1ms
}

#overlay-toggle:checked~.overlay label {
    animation-fill-mode: forwards;
    animation-name: fade;
    animation-delay: 0s;
    animation-duration: 500ms
}

.submain {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 18px;
}

.bottommain {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
}

.click {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fade {
    to {
        opacity: 0
    }
}

@keyframes hide {
    to {
        visibility: hidden
    }
}