/* DEAR DIARY WELCOME */

.dear-diary-welcome {
    background-color: rgb(12,12,12);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 300ms;
}

.dear-diary-welcome-image {
    width: 200px;
    height: 100px;
    object-fit: cover;
}

.dear-diary-welcome-header {
    font-size: 5rem;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}

.dear-diary-welcome-paragraph {
    color: white;
    width: 1000px;
    font-weight: 300;
    text-align: center;
    line-height: 28px;
}

.dear-diary-welcome-button {
    color: white;
    font-size: 1rem;
    margin-top: 40px;
    padding: 8px 15px;
    border-radius: 0.3rem;
    border: 0;
    background-color: rgb(25,25,25);
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    cursor: pointer;
}

.dear-diary-welcome-button:hover {
    background-color: rgb(30,30,30);
}

.dear-diary-welcome-button:active {
    background-color: rgb(27,27,27);
}

/* DEAR DIARY WELCOME JS */

.dear-diary-welcome-js {
    opacity: 0;
    pointer-events: none;
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
    .dear-diary-welcome-header {
        font-size: 3rem;
    }
    .dear-diary-welcome-paragraph {
        width: 650px;
    }
    .dear-diary-welcome-image {
        width: 160px;
        height: 70px;
    }
}

@media (max-width: 800px) {
    .dear-diary-welcome-paragraph {
        width: 100%;
    }
    .dear-diary-welcome-header {
        font-size: 2.5rem;
    }
    .dear-diary-welcome {
        padding-inline: 20px;
    }
    .dear-diary-welcome-image {
        width: 120px;
        height: 55px;
    }
}

@media (max-width: 600px) {
    .dear-diary-welcome-header {
        font-size: 2rem;
    }
    .dear-diary-welcome-image {
        width: 100px;
        height: 55px;
    }
}