/*General styling*/
body {
    background-color: white;
}

ul {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*Classes*/

.my-div-class {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    
}

.centered-class {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
}

.right-img-class {
    width: 50%;
    position: fixed;
    top: 35%;
    right: 0;
}

.left-img-class {
    width: 50%;
    position: fixed;
    top: 35%;
    left: 0;
}

.bottom-space-class {
    margin-bottom: 50px;
}

.button-style-class {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: white;
    border: solid gray;
    border-radius: 15px;
    padding: 10px;
}
.logo-class {
    width: 100px;
    height: 100px;
    border-radius: 30%;
    margin-right: 20px;
    padding-top: 20px;
}

/*Header section*/

#header {
    background-color: pink;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    padding: 20px;
    border-bottom: solid gray;
}

#logoImg {
    position: fixed;
    top: 15px;
    left: 10px;
    width: 200px;
}

#navMenu {
    position: fixed;
    right: 10px;
    top: 30px;
    justify-content: space-between;
}

/*Homepage*/

#welcome {
    width: 50%;
    position: fixed;
    top: 45%;
    left: 30px;
    text-align: center;
}

#irenaPic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid pink;
}

/*About*/

#aboutText {
    width: 50%;
    position: fixed;
    top: 35%;
    right: 0;
    text-align: left;
}

#travelPic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    float: right;
    border: 5px solid pink;
}

/*Education*/
#qoute {
    position: fixed;
    top: 120px;
    border-bottom: solid pink;
}

#tu {
    position: fixed;
    top: 30%;
}

#pgi {
    position: fixed;
    top: 55%;
}


/*Contacts*/

#contactPage {
    position: fixed;
    top: 25%;
    width: 100%;
    align-items: center;
}

#contact {
    margin-left: 10vmax;
    padding: 5vmax;
}

#contactPic {
    width: 250px;
    height: 150px;
    border-radius: 15%;
    border: 5px solid black;
}

/*Question form*/

#questionForm {
    border: solid pink;
    border-radius: 15px;
    padding: 20px;
    padding-top: 10px;
    background-color: rgb(252, 238, 240);
    margin-right: 10vmax;
}

#formTitle {
    border-bottom: solid pink;
}

/*Footer*/

#footer {
    background-color: pink;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: solid gray;
    flex-direction: row;
    padding-left: 50px;
}

#changeColorBtn {
    background-color: white;
    border: solid gray;
    border-radius: 15px;
    padding: 5px;
    position: fixed;
    right: 20px;
}