/* Use this file to define visual styles for your website */
/* Include this file in all .html files I create for this website */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

/*Use my own background photo*/
body {
  background-image: url("/images/MysticBeach.JPG");
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

/*this code removes the underline from hyperlinks*/
body a {
  text-decoration: none;
  color: blue;
}

/* define general style for header section */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1em;
  font-family: "Satisfy", serif;
  font-size: xx-large;
}

/* use this to selectively remove bullets from list items */
.no-bullets {
  font-family: serif;
  font-size:large;
  list-style-type: none;
}

/* define style for amateur radio call sign header section */
navigation-section {
  display: flex;
  flex-direction: row;
  align-items: left;
  justify-content: left;
  flex-wrap: wrap;
  margin: 1em;
  font-family: serif;
  font-size: large;
}
header img {
  display: block;
  max-width: 150px;
  max-height: 150px;
  background-color: #eef7fa;
  margin: 1em;
  border-radius: 100%; /*add a circle border*/
  border: 3px solid black; /*define border size and colour*/
}

/* Controls how name pronunciation is displayed */
header rt {
  font-family: serif;
  color: #3d3d3d;
}

/* Makes sure images aren't too big */
img {
  max-width: 100%;
}

/* define general style for text section */
section {
  margin: auto;
  max-width: 1200px;
  background-color: lightblue;
  padding: 1em;
}

/* define font details for section title */
.section-title {
  font-family: "Satisfy", serif;
  font-size: xx-large;
}

div.polaroid {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 1em;
  margin-bottom: 1em;
  text-align: center;
}
div.polaroid img {
  width: 100%;
}