html {
 box-sizing: border-box;
}

*,
*::after,
*::before {
 box-sizing: inherit;
}

a {
 text-decoration: none;
}

.header {
    padding-top: 30px;
    background-color: rgb(131, 177, 88);
    box-shadow: 5px 5px rgb(70, 138, 79);
    border-radius: 5px;
    height: 175px;
    width: 1000px;
}

.container img {
    width: 320px;
    height: 300px;
}

.container {
    display: flex;
    justify-content: left;
    text-align: center;
    max-width: 1190px;
    padding: 0 15px;
    margin: 0 auto;
}

.inner-header {
    font-size: 20px;
    padding-left: 60px;
    font-family: "Montserrat", sans-serif;
}

.inner-header p{
    text-align: center;
}

.inner-header h1{
    text-align: left;
    color: white;
}

.main{
    display: flex;
    justify-content: left;
}

.main img{
    width: 450px;
    height: 300px;
    border-radius: 3px;
}

.psp {
    display: flex;
    justify-content: left;
    padding-top: 170px;
}

.tamagotchi{
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: right;
    padding-left: 250px;
    padding-top: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
}

.tamagotchi img:hover{
    transform: rotate(15deg);
}

.tamagotchi img{
    width: 310px;
    height: 300px;
    border-radius: 3px;
}

.photobook{
    display: flex;
    flex-direction: row;
    width: 1000px;
    height: 500px;
    padding-top: 175px;
    padding-left: 30px;
    column-gap: 175px;
    background-image: url("img/rope-img.png");
}

.photobook img{
    width: 200px;
    height: auto;
}

.rotate-image1{
    transform: rotate(15deg);
    position: relative;
    overflow: hidden;
}

.rotate-image1:hover{
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(5px 5px 5px #222);
}

.rotate-image2{
    transform: rotate(-15deg);
}

.rotate-image2:hover{
    transform: rotate(0deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(5px 5px 5px #222);
}


body {
    display: flex;
    flex-direction: column;
    background-color:azure;
    justify-content: center;
    text-align: center;
    padding-left: 250px;
}