html {
    background-color: #ff417d;
}

body {
    font-family: "Bpmf Iansui", cursive;
    margin: 0;
    padding: 0;
}

a {
    color: #7a2c4b;
}

#header {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 1em;
    color: #ffd700;
    text-align: center;
    font-weight: bold;
}

#container {
    position: relative;
    width: 1250px;
    margin: auto;
}

#menu1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 145px;
    background-color: #ffd6e5;
    border: 1px solid #cc2f6a;
    color: #73464c;
}

#m1text {
    margin: 5px 3px;
}

#mainContentBox {
    padding-bottom: 5px;
    margin-left: 160px;
    margin-right: 142px;
    background-color: #ffd6e5;
    border: 1px solid #cc2f6a;
    
}

#mainContent {
    margin: 5px;
    color: #7a2c4b;
}

#foot {
    padding-top: 3em;
    margin-left: 16px;
    margin-right: 100px;
    color: #ab5675;
}

.devlog-title {
    font-family: "Unica One", sans-serif;
    text-align: center;
    letter-spacing: 2px;
    
    background: linear-gradient(
        90deg,
        #ffd700,
        #fff2a8,
        #ffd700
    );
    background-size: 200%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

#menu1 a:hover {
    text-shadow: 0 0 5px #ff417d;
}

#mainContentBox, #menu1 {
    transition: 0.2s;
}

#mainContentBox:hover, #menu1:hover {
    transform: translateY(-2px);
}