/*This is going to be used a lot I can tell*/
*{
    box-sizing: border-box;
}
.header{
    background-color: darkcyan;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    position: fixed;
}
.homelink{
    padding-left: 100px;
    font-size: 26px;
    font-weight: 900;
}
.headerstuff{
    display: flex;
    
}
ul{
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    padding-right: 50px;
}
li{
    text-decoration: none;
}
a{
    text-decoration: none;
    font-family: "Playwrite NZ Basic";
    color:#D5D9E0;
}
a:hover{
    color: cyan;
    font-weight: 500;
}

body{
    background-color: #56342a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.frontpageblog{
    display: flex;
    justify-content: center;
    z-index: 30;
    position: relative;
    pointer-events: none;
}
.blogpost{
    background-color: #D5D9E0;
    font-family: "Playwrite NZ Basic";
    display: flex;
    flex-direction: column;
    width: min(800px, calc(100% - 24px));
    min-height: 900px;
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 6px 14px rgba(0, 0, 0, 0.2);
    padding: 20px;
    line-height: 1.9;
    margin-top: 50px;
    pointer-events: auto;
    animation: paper-slide-in 950ms cubic-bezier(0.22, 1, 0.36, 1) both;
    will-change: transform;
}


.posttitle{
    font-size: 35px;
    font-weight: 1000;
    padding-left: 70px;
    margin-bottom: 5px;
    overflow-wrap: anywhere;
    padding-top: 30px;
}

@keyframes paper-slide-in{
    from{
        transform: translate3d(0, 140%, 0);
    }
    to{
        transform: translate3d(0, 0, 0);
    }
}

@keyframes paper-slide-in-mobile{
    from{
        transform: translate3d(120%, 0, 0);
    }
    to{
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce){
    .blogpost{
        animation: none;
        will-change: auto;
    }
}
.postwriting{
    padding-left: 30px;
    padding-right: 30px;
    font-size: 17px;
    text-indent: 3em;
    font-weight: 500;
    overflow-wrap: anywhere;
    margin-top: 10px;
}
.signoff{
    align-self: flex-end;
    padding-right: 85px;
    font-weight: 500;
    margin-top: 70px;
}
.buttonleft{
    position: fixed;
    top: 500px;
    left: 4%;
    transform: translateX(-50%);
    z-index: 25;
    transform: rotate(22deg);
}
button,
.sticky-button-link{
    font-size: 26px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 80px;
    padding-bottom: 200px;
    background-color: darkcyan;
    font-family: "Playwrite NZ Basic";
    transition: background-color 0.3s ease;
    display: inline-block;

}
button:hover,
.sticky-button-link:hover{
    background-color: cyan;
    transition: background-color 0.3s ease;
    cursor: pointer;
    
}
.stickynote{
    font-weight: 500;
    color: black;
}
.stickynote:hover{
    color: black;
}
.buttonright{
    position: fixed;
    top: 200px;
    right: 2%;
    transform: translateX(-50%);
    z-index: 10;
    transform: rotate(-22deg);
}
button, .buttonright, .sticky-button-link{
    padding-left: 25px;
    padding-right: 25px;
}
#leftbutton{
    padding-left: 15px;
    padding-right: 70px;
}
@media (max-width: 980px){
    .header{
        min-height: 100px;
        padding-right: 14px;
    }

    .homelink{
        padding-left: 24px;
        font-size: 24px;
    }

    ul{
        flex-wrap: wrap;
        gap: 12px;
        padding-right: 20px;
    }

    .frontpageblog{
        padding: 0 12px;
    }

    .blogpost{
        min-height: unset;
        height: auto;
    }

    button,
    .sticky-button-link{
        font-size: 20px;
        padding-right: 36px;
        padding-bottom: 120px;
    }

    .buttonleft{
        left: 8%;
    }

    .buttonright{
        right: 3%;
    }
}

@media (max-width: 768px){
    .header{
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 10px 12px;
    }

    .homelink{
        padding-left: 8px;
        font-size: 22px;
    }

    .headerstuff{
        width: 100%;
    }

    ul{
        justify-content: flex-start;
        padding-right: 0;
        gap: 10px;
    }

    .blogpost{
        margin-top: 120px;
        padding: 16px;
        animation-name: paper-slide-in-mobile;
    }

    .posttitle{
        font-size: 22px;
        padding-left: 8px;
    }

    .postwriting{
        padding-left: 10px;
        padding-right: 10px;
        text-indent: 1.5em;
        font-size: 14px;
    }

    .signoff{
        padding-right: 18px;
    }

    .buttonleft,
    .buttonright{
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    button,
    .sticky-button-link{
        font-size: 17px;
        padding: 10px 16px;
    }

    #leftbutton{
        padding-left: 16px;
        padding-right: 16px;
        display: flex;
        justify-content: center;
    }

    #leftbutton .stickynote{
        display: block;
        text-align: center;
        width: 100%;
    }
}
.aboutmebox{
    display: flex;
    justify-content: center;
}
.aboutme{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: darkcyan;
    height: 100vh;
    width: 1100px;
    align-items: center;
    margin-top: -75px;
    color: cyan;
    font-family: "Playwrite NZ Basic";
    padding: 100px;

}
.aboutmeh1{
    font-size: 40px;
    font-weight: 1000;
    color: cyan;

}
.aboutmep{
    font-size: 17px;
    font-weight: 300;
    text-indent: 3em;
    line-height: 28px

}
.aboutmep1{
    font-size: 20px;
    font-weight: 700;
    align-self: flex-start;
    text-indent: 8em;
    color: cyan;
    padding-top: 30px;

}

@media (max-width: 768px){
    .aboutmebox{
        padding: 116px 12px 20px;
        align-items: flex-start;
    }

    .aboutme{
        width: 100%;
        height: auto;
        min-height: calc(100dvh - 136px);
        margin-top: 0;
        padding: 16px;
        justify-content: flex-start;
    }

    .aboutmeh1{
        font-size: 32px;
        margin: 0 0 15px;
        align-self: flex-start;
    }

    .aboutmep,
    .aboutmep1{
        font-size: 18px;
        text-indent: 0;
    }

    .aboutmep1{
        margin: 0 0 10px;
    }
}
.archivebox{
    display: flex;
    justify-content: center;
}
.postarchive{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: darkcyan;
    height: 100dvh;
    width: 1100px;
    align-items: center;
    color: whitesmoke;
    font-family: Arial;
    margin-top: 100px;
}
.postlinks{
display: flex;
font-weight: 1000;
gap: 50px;
background-color: #d5d9e0;
border-radius: 10px;
}
.archiveh3{
    margin-bottom: 40px;
}
.archiveh1{
    font-size: 40px;
}
.archivelink a{
    color: black;
}

/**this is to prevent scrolling on the archive page, until further notice**/
.postarchivepage{
    overflow: hidden;
}