@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');

/* Fonts */
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}


html {
    background-image: url("images/portofsaintcast.jpg");
    font-family: 'Lato', sans-serif;
    font-size: 0.8em;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-in-width{
    max-width: 800px;
    margin: auto;
}

/* Boxes on homepage */
nav {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
    gap: 5px;
}

.nav-link{
    border-bottom: 4px gray solid;
    border-left: 1px gray dashed;
    border-right: 1px gray dashed;
    border-top: 1px gray solid;
    background-color: aliceblue;
    text-transform: uppercase;
    color: darkslategray;
    font-size: 0.90em;
    text-decoration: none;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

leftbar{
    flex: 1;
}

main{
    flex: 4;
}

.main-style{
    background-color: rgba(240, 248, 255, 0.7);
    border: 1px solid darkslategray;
    box-sizing: border-box;
    padding: 10px;
    color: darkslategray;

    a:link {
    color: indianred;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:visited {
    color: steelblue;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:hover {
    color: brown;
    background-color: transparent;
    text-decoration: underline;
  }
}

.aligncenter {
  text-align: center;
}

.homebox {
  background-color: rgba(255, 255, 240, 0.7);
  flex: 1;
  border: 2px dotted darkslategray;
  padding: 0.5em;
  border-radius: 5px;
}

.home-pad {
  padding:10px;
}

.big-pad {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  flex-basis:100%
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap:2px 4px;
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}

.blog-section-heading {
    font-size: 1.2em;
}

.guestbook-link {
    font-size: 1.2em;
}