@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: url(/assets/fire.gif);
    background-size: 20%;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    font-family: "Metal Mania", system-ui;
    font-weight: 400;
    font-style: normal;
}

.main {
    width: 70vw;
    height: 97vh;
    background: url(/assets/journal.png);
    background-size: 100% 100%;
    transform: translateY(3%);
    display: flex;
    justify-content: flex-start;
    gap: 1%;
    padding: 3%;
}

.main__page {
    width: 48%;
    height: 100%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main__logo {
    width: 80%;
}

.main__text {
    width: 90%;
    font-size: 1.75vw;
}

.main__portrait {
    border: ridge 9px #edb830;
}

.main__copyright {
    position: fixed;
    bottom: 1%;
    left: 0.5%;
    color: white;
    font-size: 1.72vw;
}