/*!
 * Created By Michael Wright
 * Date 4/4/2025
 * This is intended for the temporary landing page only
 */

*
{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html
{
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  background-image: url('../img/wheatfieldsbyPolinaRytovaOnUnsplash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header
{
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  margin-bottom: 40px;
}

.header h1
{
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header p
{
  font-size: 1.2em;
  font-weight: 300;
}

.footer
{
  margin-top: auto;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.footer h1
{
  font-size: 1em;
  margin-bottom: 10px;
}

.grid-wrapper
{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.row
{
  display: flex;
  gap: 40px;
  justify-content: center;
}

.box
{
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.box:hover
{
  width: 200px;
  height: 200px;
}

.word,
.description
{
  position: absolute;
  padding: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.word
{
  font-size: 1.5em;
  font-weight: bold;
  opacity: 1;
  transform: scale(1);
}

.description
{
  opacity: 0;
  transform: scale(0.95);
  font-size: 0.9em;
}

.box:hover .word
{
  opacity: 0;
  transform: scale(0.8);
}

.box:hover .description
{
  opacity: 1;
  transform: scale(1);
}