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

body {
    background-color: #DEEFFF;
    ;
    padding: 64px 24px;

    font-family: "Inter", sans-serif;
}

.package-cards {
    background-color: #F0F9FF;
    border: 1px solid #0369A1;
    border-radius: 32px;
    max-width: 900px;
    width: 100%;
    height: 400px;
    
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    padding: 32px;
}

.polaroids {
    flex: 1;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.descriptions {
    flex: 1;
}

.polaroid {
    width: 230px;
    height: 230px;
    object-fit: cover;

    background-color: white;
    padding: 8px 8px 32px 8px;

    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);

    position: absolute;

    transition-property: rotate;
    transition-duration: 1000ms;
}

.polaroid:nth-of-type(1) {
    transform-origin: left bottom;
    rotate: 8deg;
    z-index: 3;
}

.polaroid:nth-of-type(2) {
    transform-origin: center;
    rotate: 0deg;
    z-index: 2;
}

.polaroid:nth-of-type(3) {
    transform-origin: left bottom;
    rotate: -8deg;
    z-index: 1;
}

.package-cards:hover .polaroid:nth-of-type(1) {
    rotate: 22deg;
}

.package-cards:hover .polaroid:nth-of-type(2) {
    rotate: 7deg;
}

.package-cards:hover .polaroid:nth-of-type(3) {
    rotate: -20deg;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.73px;
    text-align: left;

    color: #0369A1;
}

p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;

    color: #0C4A6E;
}

a {
    text-decoration: none;
}

button {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;

    background-color: white;
    padding: 12px 24px 12px 24px;
    border-radius: 32px;
    border: solid 0px;
    

    display: flex;
    gap: 10px;
    margin-top: 30px;

    transition-property: background-color, scale;
    transition-duration: 300ms;

}

button:hover {
    background-color: #aaaeaf;
    scale: 105%;
}

@media (max-width:640px) {
    .package-cards {
        flex-direction: column;
        height: 800px;
    }
}