/*
Programming from A-Z Portfolio Website
10 Sep 2021 - Continue
Soojin Lee
Professor Daniel Shifffman */


@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');


html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Nanum Pen Script', cursive;
  }

/*container 1*/

#container1 {
  z-index: 300;
  width: 100%;
  height: 45pt;
  padding-bottom: 15pt;
  background-color: white;
  position: fixed;
  border-bottom: 1px solid grey;

}

#container1 img {
  position: fixed;
  max-width: 100%;
  width: 120pt;
  padding-left: 10%;
  top: 24px;
}

.navbar {
  overflow: hidden;
  position: fixed;
  top: 34px; 
  right: 50px;
  width: auto; 
}

.navbar a {
  display: inline-block;
  color: black;
  border: 2px solid white;
  text-align: center;
  padding: 0px 40px;
  text-decoration: none;
  font-size: 17pt;
}



.navbar a:hover {
    transition: all 0.3s ease-in;
    border:2px solid rgb(73, 0, 95);
    background-color: white;
    

}



/*container 2*/

#container2 {
  width: 100%;
  padding-top: 65pt;
  height: 120pt;
  padding-bottom: 15pt;
  font-family: 'Amatic SC', cursive;
  background-color: white;
  position:relative;
  z-index: 100;
}


#container2 .title {

  font-size: 30pt;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#container2 .title_info{
  font-weight: normal;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 20pt;
}

/*container 3*/

#container3 {
  width: 100%;
  height: 1000pt;
  padding-top: 10pt;
  text-align: center;
  display: flex;
  position: relative;
  background-color: white;
  font-family: 'Inconsolata', monospace;
}

#container3 .weektitle {
   margin-left: 30%;  
   font-size: 15pt;
 
}

#container3 .weektitle a {
  line-height: 5em;
  border-radius: 7px;
  content: "\a";
  padding: 9px;
  color: black;
  text-align: center;
  text-decoration: none;
  font-size: 15pt;
}


#container3 .weektitle a:hover {
  border-style: solid;
  border-width: 1pt;
  padding: 8px;

}

#container3 #weekdate {
  color: #A9A9A9;
  margin-top: -9pt;
  margin-left: 8%;
  font-size: 13pt;
}


#container3 #weekdate p{
   line-height: 4.9em;
}