:root {
    --textBlue: rgb(50, 75, 150);
}

main {
    max-width: 1100px;
    margin: auto;
}

@font-face {
  font-family: 'Quicksand';
  src: url("../assets/fonts/Quicksand-Regular.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: 'Quicksand';
  src: url("../assets/fonts/Quicksand-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

body, body *{
    font-family: 'Quicksand';
}

html, body {
  margin: 0;
  padding: 0;
}


body {
    background-image: url('../assets/images/backgrounds/background_sensei.png');
    background-size: cover;
    background-position: center bottom;
    color: White;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: normal;
}

h1 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 600; 
}

h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #fff;
}

ul {
    list-style-type: none; /* removes default list styling, needed? */
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 27, 57, 0.7), rgba(26, 48, 93, 0.7));
    border-radius: 10px;
    border: 1px solid rgba(66, 187, 229, 0.4);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    max-width: 1000px;
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .link:hover {
        background: linear-gradient(135deg, rgba(15, 27, 57, 1), rgba(26, 48, 93, 1));
        transform: translateY(-2px);
    }

.image-container {
    width: 150px;
    max-width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.image-container img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.text-container {
    flex: 1;
    padding-left: 20px;
}

.link-title {
    font-size: 200%;
    font-weight: bold;
    margin-bottom: 8px;
}

.description {
    font-size: 150%;
}


.header-container {
  width: 100%;
  position: relative;
  z-index: 1000;
}

.white-bar {
  background-color: white;
  height: 16px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.banner {
  width: 100%;
  display: block;
  position: relative;
}

.header-text {
  position: absolute;
  top: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 1.1rem;
  font-weight: bold;
  z-index: 2;
}

.home-button {
  position: absolute;
  left: 1rem;
  top: 15px;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.home-button a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0px 10px;
}

.home-button a:hover {
  background-color: #f0f0f0;
}

.account-container {
  position: absolute;
  right: 1rem;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.account-name {
  margin-right: 0.5rem;
}

.account-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 120px;
  z-index: 10;
}

.account-dropdown a {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  color: black;
}

.account-dropdown a:hover {
  background-color: #f0f0f0;
}

.clock {
  margin-right: 1rem;
}
