@import url('https://fonts.googleapis.com/css2?family=Finger+Paint&display=swap');

:root {
    --main-color:#4E3731;
    --secondary-color:#30221e;
}



html {
  font-family: "Finger Paint", sans-serif;
  content: fixed;
  position: relative;
  height: 100%;
  width: 100%;
}

html::-webkit-scrollbar {
  display: none;
}

.noscrollbar::-webkit-scrollbar {
  display: none;
}

.scroller {
    -ms-overflow-style: none;  /* Internet Explorer and Edge */
    scrollbar-width: none; 
}

.iframe-content {
  background-image:
  url('images/swirls.png'),
  linear-gradient(to bottom, rgb(248, 247, 182), rgb(255, 255, 255));
  min-height: 800px;
  border-style: solid;
  border-width: 6px;
  border-color: var(--main-color);
  color: var(--main-color);
}

p {
  color: inherit;
  font-size: 16px;
  padding-left: 20px;
}

h1 {
  color: inherit;
  font-size: 30px;
  word-wrap: break-word;
  text-align: center;
  padding-left: 20px;
}

h2 {
  color: inherit;
  font-size: 24px;
  word-wrap: break-word;
  text-align: left;
  padding-left: 20px;
}

.section-full {
  background-color: var(--secondary-color);
  padding: 30px;
  padding-top: 5px;
  color: white;
  border: 1px dotted  var(--main-color);
  border-width: 8px 0 8px 0;
}

.socials {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: var(--main-color);
  color: white;
  margin-top: 20px;
}

.socials h1{
    color: white;
    padding-top: 20px;
    text-align: center;
}

.socials p {
    color: white;
}

a {
  text-decoration: none;
}

.icon {
  height: 30px;
  padding-left: 20px;
  padding-right: 20px;
  float:left;
}

.article {
  color: white;
  padding: 10px;
}

.grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.article-nav {
  width: 20%;
  background-image: url('images/flowers.png');
  background-color: var(--main-color);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px;
  content: contain;
  overflow: auto;
  border: 5px solid var(--secondary-color);
}

.article-div ul li:hover {
  background-color: var(--secondary-color);
}

.article-nav p {
    color: white;
}

.article-content {
  background-color: var(--secondary-color);
  width: 80%;
  float: right;
  border-radius: 10px;
  margin-left: 5px
}

.article-div {
  display: flex;
  height: 650px;
  margin-left: 10px;
  margin-right: 10px;
}

iframe{
  height: inherit;
  width: inherit;
  border: 0;
}

.article-div ul {
  margin: 0;
  padding: 0;
  overflow: scroll;
}

.article-div ul li {
  padding-top: 2px;
  padding-bottom: 2px;
  list-style-type: none;
}

.article-div ul a {
  text-decoration: none;
}

.article-div a li {
  color: var(--main-color);
  font-size: 20px;
  position: relative;
  padding-left: 10px;
  text-decoration: none;
  overflow: hidden;
}

.threebythree {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 100px 100px 100px;
  width: 340px;
  border-radius: 5px;
  padding: 20px; 
  background-color: var(--main-color);
  border: 2px dotted white;
}

.threebythree img {
  width: 100px;
  height: 100px;
  transition: height 1s, width 1s;
  align-content: center;
  border: 2px solid var(--secondary-color);
}

.threebythree img:hover {
  width: 110px;
  height: 110px;
    align-content: center;
}

.theebythree-iframe {
  width: 354px;
  height: auto;
  float: right;
}