/*
    John (Selene) Phillips, December 8th 2024, IST-239-W01, Seal Color Game CSS File

    This is the external Stylesheet (css file) that styles the Seal Color Game page.
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Liquid 3 Column Layout */
.content {
    display: flex;
    width: 100%;
    justify-content: center;
}

.LeftColumn {
    flex: 1;
    width: 25%;
    padding: 20px;
}

.MiddleColumn {
    flex: 1;
    width: 50%;
    padding: 20px;
}

.RightColumn {
    flex: 1;
    width: 25%;
    padding: 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(backgroundMoreBlur.jpg);
    background-size: cover;
}

header h2 {
    font-family: "Lucida Handwriting", cursive, sans-serif;
    font-size: 30px;
    text-shadow: 2px 2px 4px rgb(255, 130, 236);
}

header h3 {
    font-family: "Lucida Handwriting", cursive, sans-serif;
    font-size: 12px;
    text-shadow: 2px 2px 4px rgb(255, 130, 236);
}

.headerTitlePosition {
    text-align: center;
    height: 50%;
}

header img {
    width: 5%;
    filter: drop-shadow(0px 0px 5px rgb(255, 130, 236));
}

/* Overall Styles */
html {
    font-family: "Lucida Handwriting", cursive, sans-serif;
}

/* Navigation Bar Styles */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(255, 177, 243);
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.unclicked:hover {
    background-color: rgb(255, 141, 238);
}

.currentTab {
    background-color: rgb(255, 95, 231);
}

/* Middle Column Styles */
.MiddleColumn {
    text-align: center;
}

.sealImage img {
    width: 40%;
}

.totalPoints {
    display: block;
    background-color: rgb(255, 130, 236);
    font-size: 42px;
    font-style: italic;
}

div.totalPoints span {
    color: white;
    text-shadow: 1px 1px 4px rgb(255, 240, 253);
    font-style: italic;
}

div.currentTime span {
    color: red;
    text-shadow: 1px 1px 4px rgb(255, 47, 47);
}

.userButton {
    cursor: pointer;
    background-color: #c421c9;
    color: black;
    padding: 15px 18px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    margin: 6px 2px;
    display: inline-block;
    text-shadow: 2px 2px 4px rgb(255, 130, 236);
    box-shadow: 1px 1px 4px black;
  }

  .userButton:hover {
    cursor: pointer;
    background-color: #fa68ff;
    color: rgb(255, 255, 255);
    padding: 15px 18px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    margin: 6px 2px;
    display: inline-block;
    text-shadow: 2px 2px 4px rgb(135, 8, 116);
    box-shadow: 1px 1px 4px black;
  }

/* Body Style */
body {
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgb(255, 168, 241));
}