@font-face {
 font-family: "Exo";
 src: url("/files/styles/578781/exo2.ttf") format("truetype")
}
a {
 font-size: 20px;
  line-height: 23px;
  font-style: italic;
  margin-bottom: 12px;
  text-decoration: none;
  cursor: pointer;
}
body {
    font-family: "Exo", sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
header {
    font-family: "Exo", sans-serif;
    display: flex;
    height: 120px;
    background: #EEEFF3;
    border-bottom: 2px solid #426594;
}
.logo {
    width: 300px;
    margin-top 20px;
}
.logo img{
    width: 300px;
    margin-top 20px;
}
.title {
    font-family: "Exo", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: #426594;
}
@media (max-width: 1600px){
    .title {
        font-size: 26px
    }
}
.account {
    width: 300px;
    height: 150px;
}
.site-content {
    min-height: 0;
    flex: 1;
    display: flex;
    background: white;
    background-size: 100% 100%;
}
.menu {
    max-width: 350px;
    width: 100%;
    margin: 100px 0 0 50px;
    color: white;
}
.menu span {
  display: inline-block;
  border: 2px solid #426594;;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-bottom: -1px;
  margin-right: 10px;
}
.menu a {
  color: #426594;;
  font-size: 19px;
  font-style: normal;
}
.menu a:hover {
    text-decoration: underline;
}

.page-content {
    position: relative;
    min-height: 0;
    flex:1;
    background: rgba(238, 239, 243, 70%);
    margin: 50px 40px 50px 0;
    border-top-left-radius: 60px;
    border-left: 4px solid #426594;;
    border-top: 4px solid #426594;;
    padding: 40px;
    color: #426594;
    overflow: auto;
    font-size: 22px;
}
.page-content div {
    background: transparent;
    border: none;
}
.page-content table {
    font-size: 16px;
}
.page-content table a{
    color: grey;
}
.page-content td {
    background: none;
    color: grey;
}
.page-content a {
    color: #426594;
    font-style: none;
    font-size: 19px;
    text-decoration: underline;
}
.earth {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.footer{
   color: #426594;
   margin: 0 0 20px 50px;
}