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

.grid-2{
    display: grid;
    grid-template-columns: 1fr 2fr;
}

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: 10vh;
    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: 90%;
}

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

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

.section-2 a{
    color: #11ABB0;
    font-size: 1.1rem;
    padding-left: 0;
    width: 100px;
}
/* animations / utilities */
.section-2 a:hover{
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

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

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

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

.section-1 .button {
    background: #7A7C80;
    font: 18px/30px 'opensans-bold', sans-serif;
    text-decoration: none;
    letter-spacing: 0;
    color: #000;
    padding: 16px 20px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    height: auto;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}

.profile-photo {
    padding-top: 20px;
    width: 70%;
}

.other-photo {
    max-width: 100%; /* Adjust this value based on your design */
    height: auto; /* This ensures the image height adjusts accordingly */
    /* Add any additional styles you want for other photos */

}

.other-photo2 {
    max-height: 100%; /* Adjust this value based on your design */
    width: auto; /* This ensures the image height adjusts accordingly */
    /* Add any additional styles you want for other photos */
	border: 1px solid #999; /* Gray border */
    padding: 5px;

}

.other-photocenter {
    max-width: 100%; /* Adjust this value based on your design */
    height: auto; /* This ensures the image height adjusts accordingly */
    /* Add any additional styles you want for other photos */
	display: block;
    margin: auto;
}


/* 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;
        padding-bottom: 2rem;
    }
}

@media(max-width:350px) {
    .section-2 h2, .section-1 h2 {
        font-size: 1.4rem;
    }
}

@media(min-width:425px) and (max-width: 560px) {
    .profile-photo {
        width: 60%;
    }
}

@media(min-width:560px) and (max-width: 780px) {
    .profile-photo {
        padding-top: 20px;
        width: 40%;
    }
}