/* 
  Filename: style.css
  Author: Ethan Lanfear
  Course: ITWP 1050
  Assignment: Project 1
*/

/* Global Variable using :root Selector */
:root {
    --white: #FFFFFF;
  }
  
  /* Universal Selector */
  * {
    box-sizing: border-box;
  }
  
  /*Body Selector */
  body {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /*  Header Class */
  .header {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: inset 0 0 25px black;
  }
  
  /*  h1 Selector */
  h1 {
    color: var(--white);
    padding: 15px;
  }
  
  /* h2 Selector */
  h2 {
    text-align: center;
    padding: 0;
  }
  
  /* Image  */
  img {
    border: 3px double black;
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    height: auto;
  }
  
  /* Awards and Info */
  #awards, #info {
    text-align: left;
    font-size: 85%;
  }
  
  /* Retired ID  */
  #retired {
    color: maroon;
    font-weight: bold;
  }
  
  /* Highlights Class */
  .highlights {
    text-align: left;
    font-size: 85%;
  }
  
  /* Headlines Class */
  .headlines {
    font-size: 85%;
    font-weight: bold;
    text-align: center;
  }
  
  /* Column Side Class */
  .column.side {
    background-color: var(--white);
  }
  
  /* Footer Validation */
  .footer {
  padding: 20px;
  text-align: center;
  font-size: 11px;
  }

/* Background Gradient for the Body */
body {
    background: linear-gradient(to right, #1e90ff, #ff6347);
}

/* Updated H1 Styling */
h1 {
    font-family: 'Roboto', Arial, sans-serif;
    font-variant: small-caps;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Paragraph Line Height */
p {
    line-height: 1.6;
}

/* Styling for Image */
img {
    border: 5px solid #1e90ff;
    border-radius: 15px;
    max-width: 50%;
}


/* Image  Layout */
.image-gallery {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
}

.image-container {
    max-width: 45%;
    text-align: center;
}

.image-caption {
    margin-top: 5px;
    font-size: 0.9em;
    color: #333;
}

/* Player Section  */
.column.side {
  background: linear-gradient(to left, #ff6347, #1e90ff);
  padding: 20px;
  border-radius: 10px;
}

/* Highlights Section*/
.column.middle {
  background: linear-gradient(to right, #ff6347, #1e90ff);
  padding: 20px;
  border-radius: 10px;
}
