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

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

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #b8bcc4;
    line-height: 1.6;
}

h2,.white{
    color: #fff;
}

a{
    color: #7A7C80;
    text-decoration: none;
}
/* section 1 */
.section-1{
    padding-top: 35vh;
    text-align: center;
}

.section-1 p{
    font-size: 1.2rem;
    padding-bottom: 15px;
    margin:0;
    color: #e0e0e0;
    font-weight: 300;
}

.section-1 h2{
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-1 a{
    font-size: 1.5rem;
    padding: 10px;
}
/* section 2 */
.section-2{
    padding-top: 10vh;
    padding-bottom: 10vh;
    width: 70%;
}

.section-2 h2{
    font-size: 1.9rem;
    margin-bottom: 15px;
    margin-top: 30px;
    border-bottom: 2px solid #0f3460;
    padding-bottom: 10px;
}

.section-2 p{
    font-size: 1.1rem;
    padding-bottom: 15px;
    margin:0;
    line-height: 1.8;
}

.section-2 p strong{
    color: #fff;
    font-weight: 600;
}

.section-2 a{
    display: block;
    padding: 8px 0;
    font-size: 1.15rem;
    padding-left: 0;
    width: auto;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 10px;
}
/* animations / utilities */
.section-2 a:hover{
    font-size: 1.25rem;
    color: #fff;
    cursor: pointer;
    border-left: 3px solid #0f9d58;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.section-1 a:hover{
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

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

/* 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;
    }
}