main
{
    background-color: rgb(20, 20, 20);
    display: flex;
    flex: auto;
    justify-content: center;
}

html
{
    overflow-y: scroll; /* forsnutej scroll bar*/
    margin: 0;
    height: 100%;
}

body
{    
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aboutMe
{
    display: flex;
    /*grid-template-columns: repeat(2, 1fr);*/
    justify-content: center;
    align-items: center;
    max-width: max-content;   
    /*height: 180vh; /*smazat potom*/
}

.aboutMeText
{
    font: 20px "Saira Semi Condensed", serif;
    color: white;
    text-align: justify;
    max-width: 460px;
    padding-right: 40px;
}

.aboutMeImg
{
    
    display: grid;
    justify-content: right;
    padding-right: 150px;
    margin-left: 30px;
}

.aboutMeImg img
{
    height: 300px;
}

h1
{
    font-weight: normal;
}


@media screen and (max-width: 975px)
{
    .aboutMeText
    {
        font: 15px "Saira Semi Condensed", serif;
        max-width: 400px;
        padding-right: 30px;
    }

    .aboutMeImg
    {
        padding-right: 100px;
    }   

    .aboutMeImg img
    {
        height: 200px;
    }   
}

@media screen and (max-width: 760px)
{
    .aboutMeText
    {
        font: 15px "Saira Semi Condensed", serif;
        max-width: 400px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .aboutMePicture
    {
        display: none;
    }   
}