* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FEFFF0;
    min-height: 100vh;
}



.imgRightCorner {
    position: absolute;
    top: 0;
    right: 0;
    transition: transform 0.3s ease;
}

.imgLeftCorner {
    position: absolute;
    top: 200px;
    left: 0;
    transition: transform 0.3s ease;
}

.imgCenterSticker {
    position: absolute;
    width: 250px;
    top: 500px;
    left: 150px;
    transition: transform 0.3s ease;
}

.imgRightCorner:hover,
.imgLeftCorner:hover,
.imgCenterSticker:hover {
    transform: scale(1.1);
}

/*Header bar */


.headerBar {
    width: 1200px;
    height: 80px;
    background: #FFFFFF;
    border: 4px solid #000000;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.42);
}

.whoamiButton,
.competenceButton,
.projetButton,
.contactButton {
    width: 200px;
    height: 60px;
    background: #BAE6FF;
    border-radius: 30px;
    border: 4px solid #000000;
    position: absolute;
    top: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.whoamiButton {
    left: 50px;
}
.competenceButton {
    left: 490px;
}

.projetButton {
    left: 270px;
}

.contactButton {
    left: 930px;
}

.whoamiButton:hover,
.competenceButton:hover,
.projetButton:hover,
.contactButton:hover {
    background: #9DD9FF;
    transform: translateY(-2px);
}


.whoamiButton:hover,
.competenceButton:active,
.projetButton:active,
.contactButton:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/*#########################################################*/


.pictureFrame{
    position: absolute;
    top: 300px;
    left: 1000px;
    width: 500px;
    height: 500px;
    border: 4px solid #000000;
    border-radius: 20%;
    box-shadow: 8px 8px 0 rgba(0, 0, 0.42, 0.42);
}

.lightImage{
    position: absolute;
    top: 80px;
    left: -50px;
    width: 100px;
}

.arrowImage{
    position: absolute;
    top: 800px;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
}

.whoami{
    position: absolute;
    top: 450px;
    left: 430px;
    text-align: center;
    font-size: 20px;
    font-family: "Spicy Rice", serif;
    font-weight: 400;
    font-style: normal;
    opacity: 70%;
}

.Portfolio{
    position: absolute;
    top: 1050px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    font-family: "Spicy Rice", serif;
    font-weight: 400;
    font-style: normal;
}
