@import url('https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kreon:wght@300..700&display=swap');

.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }



html {
    height: 100%;
}
body {
    background-image: url('/i/bg-clouds.png');
    background-repeat: no-repeat;
    background-size: 100%, auto;
    background-color: rgb(15, 30, 56);
    color: #ddd;
    font-family: "Titillium Web", sans-serif;
    font-size: clamp(12px, 1.5vw, 17px);
    margin: 0;
}

.kreon {
    font-family: "Kreon", serif;
}
.rounded {
    border: 1px #222 solid;
    border-radius: 8px;
}
.shadow {
    box-shadow: 4px 4px rgba(0, 0, 0, 0.4);
}
.darkened-green {
    border: 1px #222 solid;
    background: rgba(13, 24, 12, 0.8);
    padding: 8px 16px;
}




#container {
    position: relative;
    min-height: 100vh;
    /*padding-bottom: 4rem;*/
}

div.narrow {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
div.info-left {
    width: 60%;
}

div.serverdetail {
    width: 100%;
    border-style: solid;
    border-width: 1px 0 1px 0;
    border-color: #235;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    margin-bottom: 48px;
}

div.ibgd {
    border-image: url('/i/border1.png') 8 / 16px / 8px round;
    width: 100%;
    padding: 32px 0;
    background-image: url('/i/test.png');
    background-size: cover;
}


/*
Colours
*/
.white { color: white; }
.tan { color: #fc9; }
.cwgreen { color: #8c8; }


/*
Roundings
*/
.round5 { border-radius: 5px; }



/*
Links
*/

a {
    color: rgb(255, 218, 96);
    text-decoration: none;
    font-weight: bold
}


/*
Headers
*/
.big {
    font-size: 250%;
}

h1 {
    margin: 0;
    color: #eee;
    font-size: 160%;
    font-weight: bold;
    text-shadow: 0px 0px 2px black, 5px 5px 5px rgb(26, 26, 44);
}

h2 {
    margin: 0;
    color: #eee;
    font-size: 130%;
    font-weight: bold;
    text-shadow: 0px 0px 2px black, 5px 5px 5px rgb(26, 26, 44);
}



.grid {
    display: inline-grid;
    gap: 16px;
}
.pic-left {grid-template-columns: 200px auto;}
.pic-right {grid-template-columns: 80% 20%;}

div.one { grid-column: 1; }
div.two { grid-column: 2; }



img.logo {
    margin: 50px 0 10px 10px;
    max-width: 40%;
    max-height: 100px;
}

img.logo-large {
    margin: 50px 0 10px 10px;
    max-width: 80%;
    max-height: 100px;
}



div.splash {
    margin: 30px auto 35px auto;
    max-width: 70%;
    font-size: clamp(14px, 1.6vw, 20px);
    text-shadow: 0px 0px 2px black, 5px 5px 5px rgb(26, 26, 44);
}

div.absolute {
    position: absolute;
}

div.center {
    text-align: center;
}

div.content {
    max-width: 1200px;
    width: 80%;
}

div.navbar {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

ul.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

ul {
    padding-left: 1.2em;
}

li {
    margin-bottom: 0.4em;
}
  
ul.navbar li {
    float: left;
    font-size: clamp(11px, 1.4vw, 1.1em);
    margin: 0 2em 0 0;
}



.highlight-text {
    color: #eee;
    text-shadow: 2px 2px 2px rgb(26, 26, 44);
}



footer {
    background: #050a1a;
    border-top: 1px rgb(22, 44, 82) solid;
    color: #789;
    font-size: 0.9rem;
    text-align: center;
    padding-top: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 4rem;
}