<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&amp;family=Noto+Sans+JP:wght@100;500&amp;family=Montserrat:wght@600&amp;display=swap');

body {
    /* background-color: #5f5290; */
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}



div.container {
    padding: 15px;
}

#jumbotroncontainer {
    padding-left: 0px;
    padding-right: 0px;
}

div.dark-container {
    background-image: linear-gradient(to bottom right, #8881a2, #050118);
}

div.light-container {
    background-image: linear-gradient(to bottom right, #ffffff, #eaeaea);
}

.light-text {
    color: azure;
}

.p-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
}

.h5-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.display-3 {
    font-family: 'Montserrat',sans-serif;
}


.light-card {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 12px 1px #ffffff;
    background-color: azure;
    transition: box-shadow 0.5s;
    margin-bottom: 15px;
}

.light-card:hover {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 7px 9px 1px #aaaaaa85;
    transition: box-shadow 0.5s;
}

.light-card img {
    box-shadow: none;
    transition: box-shadow 0.5s;
}

.light-card:hover img {
    box-shadow: 0px 3px 9px 1px #787878;
    transition: box-shadow 0.5s;
}

.dark-card {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 12px 1px #c2c2c2;
    background-color: azure;
    transition: box-shadow 0.5s;
    margin-bottom: 15px;
}

.dark-card:hover {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 7px 9px 1px #aaaaaa85;
    transition: box-shadow 0.5s;
}

.dark-card img {
    box-shadow: none;
    transition: box-shadow 0.5s;
}

.dark-card:hover img {
    box-shadow: 0px 3px 9px 1px #787878;
    transition: box-shadow 0.5s;
}

div.card {
    border: 0px;
    
    /*border-radius: 10px 50px;*/
    /*box-shadow: 0px 0px 20px 0px;    */
    /*width: 50px;*/
	
	/*height: 5.5rem;*/
    /*width: 100%;*/
    /*background: transparent;*/
    /*display: inline;*/
    /*padding-top: 15px;*/
    /*text-align: center;*/
    
}

.customJumboBg {
    background-image: url('/static/images/jumbotron-bg.gif');
    background-repeat: no-repeat;
    background-size: cover;

}

.display-2 {
	font-weight:300;
    color: #ffffff;
}

.corner-logo {
	width: 3.0rem;
}

.underlay-top,
.underlay-bottom {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-radius: 10px 10px 0px 0px;
    padding-left: 15px;
    padding-right: 15px;
}

.underlay-bottom {
    border-radius: 0px 0px 10px 10px;
}

.card-img-top {
    border-radius: 5px;
    margin: 15px;
    max-width:100%;
    width: auto;
}


a.btn.btn-primary {
    margin-top: 15px;
}

div.about {
    text-align: justify;
    text-justify: inter-word;
}

div.outline {
    padding: 10px;
    margin: 0px;
    border-radius: 5px;
    border: 1px solid white;
    border-bottom: 3px solid white;
    transition: border-bottom 0.5s, border-left 0.5s, border-top 0.5s, border-right 0.5s;

}
div.outline:hover {
    border-right: 1px solid grey;
    border-top: 1px solid grey;
    border-left: 1px solid grey;
    border-bottom: 3px solid red;
    padding: 10px;
    transition: border-bottom 0.5s, border-left 0.5s, border-top 0.5s, border-right 0.5s;
}

.margin-top {
    margin-top: 100px;
}

.margin-bottom {
    margin-bottom: 150px;
}


.hr-line-dark {
    background-color: #ffffffa6;
    height: 1px;
}
</pre></body></html>