/* 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-color: #101214;
    color: #7A7C80;

}

h2,.white{
    color: #fff;
}

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

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

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

.section-1 h2{
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-1 a{
    font-size: 1.8rem;
    padding: 12px;
}
/* section 2 */
.section-2{
    padding-top: 15vh;
    width: 70%;
}

.section-2 h2{
    font-size: 1.9rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.section-2 h2:first-child {
    margin-top: 0;
}

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

.section-2 a{
    display: inline-block;
    padding: 5px 0;
    font-size: 1.2rem;
    padding-left: 0;
    white-space: nowrap;
    color: #7A7C80;
}
/* animations / utilities */
.section-2 a:hover {
    color: #7A7C80;
    cursor: pointer;
    transition: 0.2s;
}

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

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

.project-item {
    margin-bottom: 25px;
}

.project-title {
    color: #7A7C80;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
}

.section-2 a:hover .project-title {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.project-description {
    color: #7A7C80;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 8px;
}

/* Experience section */
.experience-section h3 {
    color: #7A7C80;
    font-size: 1.1rem;
    margin-bottom: 5px;
    margin-top: 10px;
}

.experience-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
}

.experience-section li {
    padding: 2px 0;
}

.experience-section li::before {
    content: "* ";
}

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