.container {
    max-width: 1000px;
    margin: 25px auto;
    display: grid;
    gap: 15px;
    grid-template-columns: 250px minmax(0, 1fr);
    font-family: "Courier New", monospace;
}

.img-float {
  float:left;
  margin-right: 15px;
}

header, side, main, blog {
  background-color: White;
  padding: 15px;
  border-radius: 25px;
}

header {
    grid-row: 1 / 2;
    grid-column: 1 / 4;
    border: DeepPink 2px solid;
    text-align: center;
}

nav {
    grid-row: 2 / 3;
    grid-column: 1 / 4;
    background-color: White;
    border-radius: 25px;
    max-width: 100%;
}

side {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    height: max-content;
    overflow: hidden;
}
  
main {
    grid-row: 3 / 4;
    grid-column: 2 / 4;
    height: max-content;
    text-align: left;
    
}
blog {
  grid-row: 3 / 4;
  grid-column: 1 / 4
}

body {
  background-image: url('pinkbackground.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  color: DeepPink;
}

h2 {
  color: DeepPink;
  text-align: center;
}

h3 {
  color: DeepPink;
}

post-date {
  font-size: 12px;
  color: Grey;
  font-style: italic;
}

a:link {
  color: DeepPink;
}

a:hover {
  color: Black;
}

nav ul {
  list-style-type: none;
  display:flex;
}

ul li a:hover {
  color: black;
}

nav ul li a {
  display: block;
  padding: 0px 100px;
  color: DeepPink;
  text-decoration: none;
  font-size: large;
}