@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

* {
    font-family: 'Roboto Slab', serif;
    box-sizing: border-box;
}

body {
    margin: 0%;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.flex-container {
    padding: 0;
    margin: 0;
    height: 100vh;
    list-style: none;
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.rectangle {
    height: 5px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    background-color: #317873;
}

#rect-menu {
    background-color: #A3C1AD;
}

#menu {
    background-color: #317873;
    text-align: center;
    color: #A3C1AD;
    padding-top: 0%;

    position: fixed;
    left: 0;
    height: 100vh;
}

#name {
    font-size: max(16px,2vw);
    letter-spacing: 2px;

}

#avatar {
    width: max(64px, 40%);
    height: auto;
    border-radius: 5%;
    margin-bottom: 8%;
}

#page-links {
    list-style: none;
    color: #A3C1AD;
    text-align: center;
    padding: 2%;
    padding-top: 0;
    font-size: 2vw;
}

#page-links > li {
    margin-top: 8%;
}

button {
    
    padding: 0.7%;
    border: none;
    background: none;
    color: #A3C1AD;
    text-decoration: none;
    font-size: 100%;
    transition: 0.2s;
}

button:hover {
    padding-left: 1.5%;
    padding-right: 1.5%;
    border-color: #A3C1AD;
    border-width: 0.1%;
    border-style: solid;
    transition: 0.2s;
    cursor: pointer;
}


/*--------------------------------*/


#main {
    background-color: #A0D6B4;

    text-align: center;
    margin-left: 25%;
}

#header {
    
}

#title {
    font-size: max(36px,3.5vw);
    color: #317873;
    letter-spacing: 2px;
}

#content {
    padding-left: 3%;
    padding-right: 3%;
    width: 90%;
    margin-top: 3%;
    margin-left: 5%;
    margin-right: 5%;
}

div.content-component {

    font-size: max(16px, 1.5vw);
    text-align: justify;

    margin-top: 2%;
    margin-bottom: 2%;

    padding: 2%;
    padding-top: 0.5%;
    color: #49796B;
    background-color: #A3C1AD;
}

div.content-component#contact {
    text-align: center;
}

div.content-component a {
    text-decoration: none;
    color: #5F9EA0;
    font-weight: bold;
}

div.content-component svg.social {
    width: 7vw;
    height: auto;
    fill: #49796B;
    padding-left: 1vw;
    padding-right: 1vw;
}

div.content-component H2 {

    font-size: max(24px,2.5vw);
    margin-bottom: 2%;
    padding-bottom: 0;
    padding-top: 0;
    text-align: center;
}

div.content-component > b.language {

    text-align: center;
    line-height: 2;
    padding-left: 2%;
}

div.content-component > b.date {

    text-align: center;
    padding-right: 2%;
}

div.content-component > b.social {

    text-align: center;
    padding-right: 2%;
}
