body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Raleway', sans-serif;
}

.navbar {
    border-bottom: 1px solid dodgerblue;    
}

#main-header {
    background-image: url(../images/firstscreen.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;    
}

#main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 0px black;
    text-align: center;
}

.main-text-name {
    color: dimgray;
    font-size: 40px;
    letter-spacing: 5px;
}

.main-text-surname {
    color: dodgerblue;
    font-size: 40px;
    letter-spacing: 5px;
}

.main-text-sentence {
    color: dimgray;
    font-size: 16px;
    line-height: 2em;
}

.about-image {
    float: left;
    width: 33%;
    margin-right: 20px;
    margin-bottom: 10px;
}

#page-background {
    padding-top: 70px;
    padding-bottom: 10px;
    background-color: rgba(255,255,255,0);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;    
}

.cursor-pointer {
    cursor: pointer;
}

.text-dodgerblue {
    color: dodgerblue;
}

.text-darkblue {
    color: #4682B4;
}

.quote-left-10 {
    border-left: 10px solid lightgray;
    padding: 20px;
    margin-bottom: 10px;
}


/* CEP TELEFONU */

@media screen and (max-width: 730px){

    nav ul li a{
        text-decoration: underline;
        letter-spacing: 0.3em;  
    }

    .main-text-name {
        color: dimgray;
        font-size: 26px;
        letter-spacing: 5px;
    }

    .main-text-surname {
        color: dodgerblue;
        font-size: 26px;
        letter-spacing: 5px;
    }

    .main-text-sentence {
        color: dimgray;
        font-size: 14px;
        line-height: 2em;
        font-weight: 600;
    }

    .about-image {
        float: none;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 10px;
    }

}