@font-face {
    font-family: coolFont;
    src: url(GrapeSoda.ttf);
}
*{
    padding: 0;
    margin: 0;
    font-family: coolFont;
}
body{
    height: auto;
    background: url("images/background.png");
    background-position: bottom;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
header{
    width: 100%;
    background-color: rgb(32, 32, 32);
    color: white;
    font-size: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: sticky;
    top: 0px;
}
header div{
    margin: 10px;
}
.no-change-link{
    text-decoration: none;
}
.no-change-link:hover{
    color: white;
}
.header-items *{
    padding-left: 20px;
}
a{
    color: inherit;
    transition: 0.1s ease-out;
}
a:hover{
    color: rgb(255, 187, 0);
}
main{
    display: flex;
    justify-content: center;
}
.sheet{
    background-color: rgb(255, 255, 255);
    width: 800px;
    padding: 30px 50px;
    border-radius: 5px;
    margin: 25px 100px;
    box-shadow: 0 10px 20px rgba(25, 25, 25, 0.75);
}
h1,h2{
    font-weight: normal;
}
h2,p{
    margin-bottom: 10px;
}
h1{
    text-align: center;
    font-size: 65px;
    padding-bottom: 10px;
}
h2{
    font-size: 42.5px;
    padding-top: 20px;
}
p{
    font-size: 30px;
}
.pitytext{
    font-size: 15px;
    color: rgba(0,0,0,0.3);
    transition: color 0.2s ease-in;
}
.pitytext:hover{
    color: rgba(0,0,0,0.6);
}
.docimage{
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    image-rendering: pixelated;
    min-width: 300px;
}
body{
    overflow: overlay;
}
::-webkit-scrollbar{
    width: 15px;
    margin: 10px;
}
::-webkit-scrollbar-thumb{
    background-color: rgb(94, 94, 94);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover{
    background: #b8b8b8; 
}
::-webkit-scrollbar-track {
    background-color: rgb(32, 32, 32);
}
.biglink{
    color: white;
    background-color: rgb(32, 32, 32);
    font-size: 40px;
    width: auto;
    padding: 30px;
    margin: 20px 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.biglink .icon{
    margin-right: 20px;
}
.icon{
    height: 30px;
    width: 30px;
    image-rendering: pixelated;
}
.linkDA{
    background-color: green;
    transition: 0.1s ease-in;
}
.linkDA:hover{
    background-color: rgb(34, 192, 34);
    padding: 35px;
}
.linkTw{
    background-color: rgb(32, 32, 32);
    transition: 0.1s ease-in;
}
.linkTw:hover{
    background-color: rgb(83, 83, 83);
    padding: 35px;
}

/* Mobile */
@media only screen and (max-width: 768px) {
    header{
        flex-direction: column;
    }
    .sheet{
        width: auto;
        padding: 20px 30px;
        margin: 25px 50px;
    }
    main img{
        min-width: none;
    }
    h1{
        text-align: center;
        font-size: 50px;
    }
    h2{
        font-size: 35px;
    }
    p{
        font-size: 25px;
    }
}