
@media only screen and (max-width:2000px) {
    body {
    background-image: url(../images/lg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    }
    
}

@media only screen and (max-width:1280px) {
    body {
    background-image: url(../images/md.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    }

}

@media only screen and (max-width:640px) {
    body {
    background-image: url(../images/sm.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    }
}


@media only screen and (max-width: 1920px){
    .myName{
        font-size: 125px;
    }
}
@media only screen and (max-width: 1350px){
    .myName{
        font-size: 70px;
    }
}

@media only screen and (max-width: 800px){
    .myName{
        font-size: 50px;
    }
    .myRole{
        font-size: 20px;
    }
}

@media only screen and (max-width: 560px){
    .myName{
        font-size: 40px;
    }
}

main{
    margin-bottom: 69px;
}

.myName{
    color:black;
    text-shadow: 2px 1px 4px darkgrey;
}

.myName:hover{
    cursor: pointer;
    color: #fff;
    text-shadow: 4px 2px 4px black;
    font-family: 'Montserrat Alternates', sans-serif!important;
}

.myRole{
    color: #fff;
    text-shadow: 1px 1px 2px darkgrey;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: 1px;
}





