@charset "UTF-8";
/* CSS Document */
html{
    box-sizing: border-box;
    font-size: 62.5%;
}
*, *::before, *::after{
    box-sizing: inherit;
}
body{
    font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    line-height: 1.6;
    color: #234D15;
    background: #A6ACB8;
    margin: 0 15% 0 15%;
}
body a{
    text-decoration: none;
    color: #234D15;
}
body a:hover{
    color: darkred;
}
.isologo figure{
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}
h1{
    text-align: center;
    font-size: 700%;
}
h2{
    text-align: center;
    font-size: 150%;
    color: darkred;
}
main{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.6rem;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}
article{
   margin-top: 1%;
   display: grid;
  grid-template-columns: 50% auto;
}
a {
    text-decoration: none;
    color: darkred;
}
a:hover{
    color: red;
}
.txtcv{
    padding: 0 1rem 0 1rem;
}
.solo{
    text-align: center;
}
@media only screen and (max-width: 768px){
    article{
    height: 100vh;
    margin: 0%;
    display: grid;
    grid-gap: 1em;
    grid-template-columns: 100%;
    grid-template-rows: repeat(1fr, auto);
}
}



