*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    width: 100%;
    height: 100%;
    position: relative;
}

.content{
    position: relative;
    top: 40%;
    left: 40%;
}

.content h2{
    text-align: center;
    font-size: 40%;
}

.open{
    position: relative;
    left: 0%;
}

.open span{
    position: absolute;
    top: 19px;
    left: 90%;
    font-size: 200%;
    line-height: 95%;
    padding: 0.6% 1%;
    color: white;
    background: rgb(23, 161, 165);
    border-radius: 4px;
    cursor: pointer;
}

.sidebar{
    z-index: 100;
    width: 21%;
    position: fixed;
    left: 100%;
    top: 0%;
    height: 100%;
    background: rgb(0, 100, 104);
    transition: 0.5s;
}

.sidebar .close span{
    position: absolute;
    top: 3%;
    left: 4%;
    padding: 6%;
    color: white;
    background: rgb(23, 161, 165);
    border-radius: 4px;
    cursor: pointer;
}

.sidebar .title{
    padding-left: 7%;
    font-size: 25px;
    line-height: 60%;
    color: white;
    border-bottom: 2px solid gray;
}

.sidebar .links li{
    list-style: none;
    display: block;
    width: 100%;
    line-height: 400%;
    border-left: 5% solid transparent;
    border-bottom: 2px solid gray;
    cursor: pointer;
}

.sidebar .links li:hover{
    background: rgb(23, 161, 165);
    border-left: 5px solid cornflowerblue;
}

.sidebar .links li a{
    text-decoration: none;
    color: white;
    font-size: 115%;
    padding-left: 5%;
    transition: 0.5s;
}

.sidebar .links li:hover a{
    color: rgb(15, 15, 16);
    letter-spacing: 1.2%;
}

.sidebar .links li a i{
    margin-right: 5%;
}

.sidebar .social {
    width: 100%;
    position: absolute;
    bottom: 5%;
    left: 0.1%;
}

.sidebar .social a{
    width: 45%;
    font-size: 140%;
    color: white;
    background: rgb(23, 161, 165);
    padding: 3.5%;
    text-align: center;
    margin-right: 2%;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.5s;
}

.sidebar .social a:hover{
    background: cornflowerblue;
    transform: translateY(-10px);
}
.title header img {
    border-radius: 50%;
    width: 45%;
    height: 23%;
  }

  .title header p {
    padding: 3%;
  }