/*¯\_(ツ)_/¯ Why are you looking at my CSS?*/
#mask {
    visibility: visible;
}

.page {
    position: relative;
    width: 80%;
    min-width: 300px;
    max-width: 2000px;
}
#title {
    position: relative;
    margin-top: 10rem;
    left: 0rem;
    max-width: calc(100% - 35rem);
    font-size: 3.5rem;
    color: #080808;
}
#titleImg {
    position: absolute;
    top: 8rem;
    right: 0rem;
    height: 8rem
}
#textInfo {
    position: relative;
    margin-top: 3rem;
    color: rgb(250, 100, 0);
}
#textBox {
    position: relative;
    margin-top: 3.5rem;
}
#text {
    position: relative;
    top: 0rem;
    left: 0rem;
    width: calc(100% - 23rem);
    color: #080808;
}
#contentBar {
    position: absolute;
    top: 0rem;
    right: 0rem;
    width: 20rem;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    background: linear-gradient(to bottom, rgb(252,180,132), rgb(250, 100, 0) 80%);
}
#sourceBox {
    display: grid;
    grid-template-columns: 1fr 1.5rem 1.5rem;
    gap: 0.5rem;
    justify-content: right;
    line-height: 0.8rem;
    color: white;
}
#sourceBox img {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}
#content {
    color: white;
}

h1 {
    all: unset;
    font-size: 2.5rem;
}
h2 {
    all: unset;
    font-size: 2rem;
}
h3, h4, h5, h6 {
    all: unset;
    font-size: 1.5rem;
}
a {
    all: unset;
    font-family: "Playwrite NZ", cursive;
    transition: all 0.2s ease;
}
a:hover {
    color: rgb(250, 100, 0);
}
#text img {
    width: 100%;
    max-width: 40rem;
    border-radius: 1rem;
}

@media (max-width: 1200px) {
    #text {
        width: calc(65% - 2rem);
    }
    #contentBar {
        width: calc(35% - 1rem);
    }
}
@media (max-width: 1000px) {
    .page {
        width: 85%;
    }
    #title {
        margin-top: 15rem;
        max-width: 100%;
    }
    #titleImg {
        top: 5rem;
    }
}