*{
    margin:0;
    padding:0;
    font-family: 'Roboto Mono', monospace;

}

main{
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    height: 20vh;
    flex-direction: column;
}


body{
    animation: transitionIn 2s;
    margin-left: 20px;
    margin-right: 20px;
}
   
@keyframes transitionIn{
       from{
           opacity: 0;
           transform: translateY(-10px);
   
       }
   
       to{
           opacity: 1;
           transform: translateY(0);
       }
}


section{
    margin: 20px;
}


.container {
    display: grid;
    margin: 20px;

    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(4, 1fr); */
    grid-auto-rows: auto 300px;
    grid-gap:40px;
    grid-auto-flow: dense;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:500px){
    .container{
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
    #image{
        width:100%;
    }
}



main div h2{
    /*Changet text color attribute*/
    margin-left: 20px;
    font-size: x-large;
    font-weight: bolder;
    color: black;
    text-decoration: none;
}


.thin {
    background-color: white;
    color: black;
    text-decoration: inherit;
    /* text-underline-position: below; */
    font-weight: bold;
    border-bottom: 0.1px solid #ddd;
  }

.pdfDocument{
background-color: white;
color: black;
text-decoration: inherit;
/* text-underline-position: below; */
font-weight: bold;
/* border-bottom: 0.1px solid #ddd; */
}

main div a:hover{
    color: yellow;
}

main div h3{
    text-align: center;
}

.wrapper {
    padding-left: 10rem;
} 

.cv_categories {
    font-size: 17px;
    letter-spacing: 1.8px;
    padding: 0px;
    text-align: left;
    font-weight:  500;
}
.cv_item {
    padding: 0px;
    padding-left: 16px;
    margin-bottom: 15px;
}

.cv_divider_outer {
    margin-right: 15px;
}

.col-md-12.cv_divider {
    height: 1px;
    background-color: #eee;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-top: 30px;
}


a:link {
    color: yellow;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:visited {
    color:gold;
    background-color: transparent;
    text-decoration: none;
  }
  
  a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
  }
  
  a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
  }
  
