@keyframes open {
    0%{
        left : -170px;
    }
    100% {
        left : 0px;
    }
}
@keyframes close {
    0%{
        left : 0px;
    }
    100% {
        left : -170px;
    }
}
main{
    display: flex;
    height: 100%;
}
#openside{
    text-decoration: underline;
}
article{
    margin-left: 10px;
}
aside{
    background-color: #efefef;
    width: 130px;
    height: 100%;
    text-align: center;
    left: -170px;
    top: 0px;
    position: fixed;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
}
aside div img{
    width:130px
}
.sideanim{
    animation: open 1s forwards;
}
.sideanimc{
    animation: close 1s forwards;
}
.img{
    margin-left: 10px;
    width: 200px;
    border-radius: 3px;
}
.title{
color: black;
line-height: 0;
}
a{
    text-decoration: none;
}
a :hover{
text-decoration: underline;
}
.three{
display: flex;
}
@media only screen and (max-width: 750px) {
    aside{
    display: none;
    }
}
.overview{
    background-color:  #ccc;
    border-radius:10px 10px 10px 10px;
}
.overview p {
    padding-top: 5px;
    padding-left: 10px;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.up{
    display: flex;
    width: 100%;
}
.home{
    width: 25%;
}
form{
    width: 60%;
    text-align: center;
}
.popup{
width: 25%;
text-align: right;
}
header{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    height: 60px;
    background-color: rgba(200, 200, 200, .3);
}
body{
margin-top:70px
}
.logo{
margin-top: 5px;
margin-left: 10px;
}
.search{
    margin-top: 15px;
    margin-left: 10px;
}
.icon{
margin-top: 10px;
}
/* UgoWeb */
.parent a {
    display: block;
    width: 20%;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    width: 300px;
  }
  .list1 {
    display: block;
    width: 100%;
    position: fixed;
    padding: 0;
  }
  .list1 li {
    list-style: none;
  }
  .list1 li a {
    float: left;
    border-right: 1px solid #fff;
  }
  .list1 li:last-child a {
    border-right: none;
  }
  .list1 li a:hover {
    background: #00afcc;
  }
  .parent {
    position: relative;
  }
  .parent ul {
    
    display: none;
    position: absolute;
    padding: 0;
    top: 56px;
  }
  .parent ul a{
    float: none;
    width: 100%;
    border-top: 1px solid #fff;
  }
  .parent:hover ul {
    display: block;
  }
  .child1 {
    left: 0;
    width: 100%;
    list-style: none;
  }