/* Import font from Google - Go to fonts.google.com, select a font and look for the import command */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --blue: #0d6efd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #198754;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --primary-rgb: 13, 110, 253;
    --secondary-rgb: 108, 117, 125;
    --success-rgb: 25, 135, 84;
    --info-rgb: 13, 202, 240;
    --warning-rgb: 255, 193, 7;
    --danger-rgb: 220, 53, 69;
    --light-rgb: 248, 249, 250;
    --dark-rgb: 33, 37, 41;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
    --body-color-rgb: 33, 37, 41;
    --body-bg-rgb: 255, 255, 255;
}

body {
    font-family: 'Lato', sans-serif;
}

.header {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(119, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

h1 {
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
    color: rgba(119, 9, 121, 1);
}

p {color: #000000;
}

.grid-container {
  display: grid;
  /* repeat(3, 1fr) creates three equal columns that take up 1 fraction of space each */
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px; /* Optional spacing between columns */
}
.grid-item {
  padding: 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ff6600;
  font-size: 20px;
}

.grid-container2 {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
}
.grid-item2 {
  border: 1px solid #ff6600;
  padding: 20px;
  font-size: 20px;
  text-align: center;
}

.flex-container {
  display: flex;
  gap: 10px;
}
.flex-item {
  flex: 1; /* Makes all items grow equally to fill the row */
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

/* The page footer of Cassiopeia has the class "footer" so you control it with .footer */

.footer {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(119, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.card-header.card-body {
  width: 250px;
}

.side-left {
  width: 250px;
  border: 1px solid #ff6600;
  padding: 20px;
  font-size: 20px;  
}