/* global */
@import url('https://fonts.googleapis.com/css?family=Roboto');

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

body {
    /* background: linear-gradient(169deg, #050506, #101214, #1b1f22, #272c30, #101114, #32383f);
    background-size: 400% 400%;

    -webkit-animation: bg 19s ease infinite;
    -moz-animation: bg 19s ease infinite;
    animation: bg 19s ease infinite; */
    background-color: #101214;
    color: #7A7C80;
    font-family: 'Roboto', sans-serif;
    user-select: none;
    overflow: scroll;

}
/* 
@-webkit-keyframes bg {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes bg {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes bg {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
} */

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}


img {
    pointer-events: none;
    width: 25%;
    height: auto
}

a {
    color: #7A7C80;
    text-decoration: none;

}

/* section 1 */
.section-1 {
    padding-top: 30vh;
    padding-bottom: auto;
    text-align: center;
    transition: 0.3s
}

.section-1 p,
.section-2 p {
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin: 0;
    color: #7A7C80;
}

.section-1 h2,
.section-2 h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #fff;
}

.section-1 a {
    font-size: 1.5rem;
    padding: 10px;
}

/* section 2 */
.section-2 {
    padding-top: 10vh;
    padding-bottom: auto;
    width: 95%;
    transition: 0.3s
}

.section-2 a {
    display: block;
    padding: 5px;
    font-size: 1.2rem;
    padding-left: 0;
    width: 100px;
}

/* animations / utilities */
.section-2 a:hover {
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.section-1 a:hover {
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.section-2 h2:hover,
.section-2 h2:focus,
.section-1 h2:hover,
.section-1 h2:focus {
    color: #BBABD6;
    transition: ease-in-out;
    transition-duration: 0.4s;
    transition-delay: 0.2s;

}

@media(max-width:700px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-1 {
        padding: 0;
        padding-top: 5rem;
    }

    .section-2 {
        padding: 0;
        padding-left: 1.5rem;
        padding-top: 2rem;
    }
}