/* global */
@import url('https://fonts.googleapis.com/css?family=Roboto');

:root {
    --logo-margin: .5rem 0rem 0rem 0rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #101214;
    color: #7A7C80;

}

.head-text {
    font-size: 3rem;
    padding: 0;
    margin: 0;
}

.myred {
    color: #EE2A35;
}

.mygreen {
    color: #009736;
}

.mywhite {
    color: #fff;
}

.email {
    transition: all 0.1s 0s ease-out;
}

.email:hover {
    color: #fff;
}

h2,
.white {
    color: #fff;
}

h3,
.white {
    color: #fff;
}

a {
    color: #7A7C80;
    text-decoration: none;
}

/* section 1 */
.section-1 {
    padding-top: 40vh;
    text-align: center;
}

.section-1 p {
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin: 0;
}

.section-1 h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-1 a {
    font-size: 1.5rem;
    padding: 10px;
}

/* section 2 */
.section-2 {
    padding-top: 10vh;
    width: 70%;
}

.section-2 h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-2 p {
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin: 0;
}

.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;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.hero-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-items>*:not(:first-child) {
    margin: var(--logo-margin);
}

.hero-links {
    display: inline-block;
    color: #fff;
    font-size: x-large;
}

.hero-links::first-letter {
    color: #EE2A35;
}

.child-mergin-left-1>*:not(:first-child) {
    margin-left: 1.5rem;
}


.white:hover {
    position: relative;
    padding-left: 10px;
}

/* sections */

.section {
    height: 100vh;
}

/* make 2rem on mobile */
.items {
    padding: 5rem 5rem;
}

.version {
    display: flex;
    justify-content: right;
}

/* media queres */
@media(max-width:780px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-1 {
        padding: 0;
        padding-top: 5rem;
    }

    .section-2 {
        padding: 0;
        padding-left: 1.5rem;
        padding-top: 2rem;
    }
}