/* Body */
body {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    color: black;
}

#bg {
    margin: 0;
    display: block;
    position: fixed;
    top: 0;
    z-index: -1000;

    background-image: linear-gradient(rgb(101, 121, 160), rgb(158, 129, 112));
    background-repeat: repeat-x;
    background-size: 100vw 100vh;
    
    width: 100vw;
    height: 100vh;
}

.fg-content {
    padding: 10px 30px 30px 30px;
    border-radius: 7px;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.438),
            rgba(255, 255, 255, 0.414),
            rgba(255, 255, 255, 0.333));
    width: 100vw;
}

/* Container */
.container {
    margin: 20px 0;
}

.container a {
    font-weight: 600;
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
}

.centered {
    margin: 0 auto;
    width: 480px;
}

.text-center {
    text-align: center;
}

.no-list-decorate {
    margin: 0;
    padding: 0;
    text-indent: 0;
    list-style-type: none;
}
/* Padding and margin */
.pd-1-5 {
    padding-bottom: 15px;
}

.pd-3 {
    padding-bottom: 30px;
}

.mg-2 {
    margin-top: 20px;
}

.tab-group {
    display: flex;
    justify-content: center;
}

.tab-button {
    padding: 10px;
    background-image: linear-gradient(#3d60a7,#25488f);
    border: 1px solid #213b6e;
    border-bottom: 2px solid #213b6e;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    margin-right: 5px;
    width: 64px;
    transition: 0.175s;
    color:rgb(197, 207, 224);
    text-decoration:none;
}

.tab-button:hover {
    color:rgb(255, 255, 255);
    background-image: linear-gradient(#4b72c2,#2c5199);
}

a.tab-button:hover {
    text-decoration:none;
}

.tab-selected {
    background-image: none;
    background-color: #223a6b;
    background-image: linear-gradient(#1b2e55,#223a6b);
    color:rgb(175, 185, 201);
    transition: 0.175s;
}