@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
* {
    font-family: "Varela Round";
}

@keyframes on_load {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


body {
    background: #d8dee9;        
    color: #0d5559;
    margin: 0px;
    text-align: center;

    animation: 0.5s ease-out 0s 1 on_load;
}

.header {
    overflow: hidden;
    min-height: 100dvh;
    background: linear-gradient(45deg, #137a7f, #0d5559, #137a7f);
    color: #86cecb;

    .introduction {
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        padding: 16px 24px;


        color: #86cecb;
        background-color: #86cecb30;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid #137a7f;
        box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);

        border-radius: 16px;
    }
}

.yumeship {
    overflow: hidden;
    min-height: 100dvh;
    margin-top: 16px;

    p, h1 {
        margin: 4px;
    }
}

.anniversary {
    margin: 16px auto;
    width: fit-content;
    padding: 16px 24px;
    background-color: #86cecb99;
    color: #0d5559;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #137a7f;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);

    border-radius: 16px;
    text-align: center;

    p, h2 {
        margin: 4px;
    }
}

.gallery {
    display: grid;
    grid-template-columns: auto auto auto;
    width: 80dvh;
    margin: auto;
}

#photo_scale {
    width: 256px;
    height: 455px;
    object-fit: contain;
}