body {
    background-color: #ebb3c0;
    font-family: 'Comic Sans MS', sans-serif;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url("/assets/images/Cherry_blossom_in_Fukuokazeki_sakura_park-CC0.JPG");
    background-size: cover;
    background-position: center;
    image-rendering: pixelated;
    opacity: 0.8;

    filter: blur(.35px);
    filter: saturate(3);
    
    z-index: -1;
}

.absolute-website-container {
    width: 960px;
    margin: 20px auto;
    background-color: rgb(255, 225, 225);
    border: 0.25px solid black;
    border-radius: 25px;

    overflow: hidden;

    z-index: 1;
}

a {
    color: #003cff;
    text-decoration: none;
}

#main-header {
    position: relative;
    background: linear-gradient(to bottom, #ff9455 0%, #e65501 45%, #e96011 100%);
    color: white;
    padding: 10px 0 8px 10px;

    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;

    position: relative;
    z-index: 1;
}

#header-logo {
    width: 100px;
    height: auto;   
    margin: 5px 10px;
}

.header-title {
    display: flex;
    flex-direction: column;
    text-shadow: 3px 3px 5px black;
}

.header-title h1 {
   margin: 0;
   margin-bottom: 4px;
}

.header-title p {
   margin: 0;
   font-size: 18px;
}

.main-content {
    display: flex;
    align-items: flex-start;

    gap: 20px;

}

.content-left {
    flex: 3;
}

.sidebar-right-1 {
    flex: 1;
    min-width: 300px;
    margin-left: -30px;
}

.content-left, .sidebar-right-1 {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

h2.mc-h2-s {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 35px;

    color: white;
    text-shadow: 0 1px 3px black;
    font-size: 22px;

    background: linear-gradient(to bottom, #ff9455 0%, #e65501 45%, #e96011 100%);
    border: 1.5px solid black;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);

    padding: 6px 0;
    margin: 10px 0 12px;

    box-sizing: border-box;
}

p.mc-p-s {
    background-color: #e6a1e0;
    border: 1px solid rgba(0, 0, 0, 0.5);

    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    line-height: 1.6;

    padding: 10px 25px;
    margin: 5px 0 25px;

    box-sizing: border-box;
}

.main-footer {
    clear: both;
    background: linear-gradient(to bottom, #ff9455 0%, #e65501 45%, #e96011 100%);

    color: white;
    text-align: center;
    text-shadow: 0 1px 3px black;

    padding: 1px;
    font-size: 14px;
}