@font-face {
    font-family: "title-font";
    src: url(fonts/Titile-Regular.otf) format("opentype");
}

@font-face {
    font-family: "test-font";
    src: url(fonts/Test_font-Regular.otf) format("opentype");
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #534B52;
    overflow-x: hidden;
}

.title {
    display: grid;
    justify-content: center;
    width: 100%;
    height: 30%;
    padding-top: 10px;
    padding-bottom: 40px;
}

.title h1 {
    color: #F1F0EA;
    font-size: 150px;
    font-family: "title-font", serif;
}

.title p {
    color: #E0DDCF;
    font-size: 30px;
    justify-self: center;
    font-family: 'test-font', sans-serif;
}

hr {
    border: none;
    width: 100%;
    height: 5px;
    background-color: #F1F0EA;
    margin: 5px 0;
}

.all-photo {
    column-count: 4;
    column-gap: 12px;

    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.photo {
    border-radius: 16px;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 8px;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.photo p {
    color: #4EA5D9;
    font-size: 30px;
    justify-self: center;
    font-family: 'test-font', sans-serif;
}

.ending {
    margin: 40px;
}

.ending p {
    color: #C47335;
    font-size: 50px;
    justify-self: center;
    font-family: 'test-font', sans-serif;
}