* {
    box-sizing: border-box;
    margin: 0;  
} 

html {
    background-image: url(pics/background1.png);
    image-rendering: crisp-edges;
    background-size: cover;
    background-repeat: no-repeat;
}

body {
    font-family: 'Fondamento', 'DynaPuff';
    height: 100vh;
    overflow: hidden;
}

.main {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: auto;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.sidewrapper {
    margin-top: 100px;
    margin-right: 10px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.navigation {
    background-color: #9AACC7;
    border: 2px solid #D2DAE6;
    height: 300px;
    overflow: auto;
    margin: 5px;
    font-family: 'DynaPuff';
}

.navigation h3 {
    color: #264475;
    padding: 5px;
    text-align: center;
    text-decoration: underline 2px;
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 5px;
}

.navigation a {
    display: flex;
    align-items: center;    
}

.navigation a::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    background-image: url(pics/star1.png);
    background-size: cover;
    image-rendering: crisp-edges;
    filter: drop-shadow(0px 0px 3px #264475);
    transition-duration: 0.5s;
}

.navigation a:link, .navigation a:visited {
    height: 30px;
    padding: 5px;
    margin-bottom: 2px;
    background-color: #D2DAE6;
    color: #264475;
    text-decoration: none;
    transition-duration: 0.5s;
}

.navigation a:hover {
    background-color: #264475;
    color: #D2DAE6;
    letter-spacing: 5px;
}

.navigation a:hover::before {
    scale: 1.1;
    rotate: -15deg;
}

.buttons {
    font-family: 'DynaPuff';
    color: #264475;
    border: 2px solid #D2DAE6;
    background-color: #9AACC7;
    height: 300px;
    overflow: auto;
    margin: 5px;
    padding: 5px;
}

.buttons h3 {
    color: #264475;
    padding: 5px;
    margin-bottom: 5px;
    text-align: center;
    text-decoration: underline 2px;
}

.buttons p {
    background-color: #D2DAE6;
    padding: 5px;
    margin-bottom: 5px;
    font-size: 15px;
}

.mainwrapper {
    width: 800px;
    margin: 10px;
    background-color: #D2DAE6;
    border: 2px solid #9AACC7;
    box-shadow: 0px 0px 5px #D2DAE6;
    display: flex;
    flex-direction: column;
}

header {
    background-image: url(pics/background1.png);
    height: 100px;
    border: 6px double #D2DAE6;
    position: relative;
}

header h1 {
    position: absolute;
    left: 5%;
    top: 5px;
    transform: translatex(-5%);
    color: #D2DAE6;
    font-size: 50px;
}

header p {
    color: #D2DAE6;
    background-color: #020611;
    position: absolute;
    left: 95%;
    bottom: 5px;
    transform: translatex(-85%);
    font-size: 20px;
}

.maincontent {
    font-family: 'DynaPuff';
    min-height: 600px;
    border: 2px solid #D2DAE6;
    padding: 0px 10px;
}

.maincontent hr {
    border: 0;
    height: 13px;
    background: url(pics/glitter2.png);

    margin: 20px 10px 20px 10px;
}

.maincontent h2 {
    font-size: 28px;
    color: #264475;
    padding: 10px;
    text-align: center;
}

.maincontent p {
    font-size: 18px;
    color:#264475;
    padding: 10px;
    letter-spacing: 2px;
}

.button {
    display: flex;
    margin: 20px 20px 40px 20px;
}

.button a, button a:visited {
    text-decoration: none;
    color:#264475;
    letter-spacing: 2px;
    background-color: #9AACC7;
    border: #264475 2px solid;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 4px 4px #020611;
}

.button a:hover {
    box-shadow: 2px 2px #020611;
}



footer {
    font-family: 'DynaPuff';
    width: 100%;
    height: 40px;
    border: 2px solid #264475;
    color: #D2DAE6;
    text-align: center;
    padding: 10px;
    background-image: url(pics/background1.png);
}