*
{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'arial'sans-serif;
}
section
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
section header
{ 
  position: absolute;
  top: 0;
  width: 100%;
  display:flex;
  justify-content: flex-end; 
  padding: 20px; 
  background-color: #dedede;
}
section header ul
{
    display: flex;
    justify-content: center;
    align-items: center;
}
section header ul li
{
    list-style: none;
    margin-left: 20px;
}
section header ul li a
{
    color: #111;
    text-decoration: none;
    font-size: 13px;
}
section header ul li button
{
    background: #4584ef;
    border: none;
    outline: none;
    padding: 8px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
}
section .main .text
{
    display: flex;
    color: #031e80;
    font-size: 20px;
    margin-right: 25px;
    margin-left: 0px;
    text-decoration: none;
}
section .main .mission
{
    display: flex;
    color: rgb(255, 0, 187);
    font-size: 25px;
    margin-right: 25px;
    margin-left: 0px;
    text-decoration: none;
}

section .main .languages
{
    display: flex;
    margin-top: 30px;
}
section .main .languages li
{
    list-style: none;
    margin: 0 5px;
    font-size:15px;
}
section .main .languages li a
{
    text-decoration: none;
    color:#1a0dab;
}
section .main .languages li a:hover
{
    text-decoration: underline;
}
section .footer
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f2f2f2;
}
section .footer .row
{
    padding: 15px 25px;
    border-top: 1px solid rgb(red, green, blue);
    background-color: #d5d0d0;
}
section .footer .row .country
{
 color: red;
}
section .footer .row.row1 
{
    display: flex;
    justify-content: space-between;
}
section .footer .row.row1 ul li
{
    list-style: none;
}
section .footer .row.row1 ul:nth-child(2) li a 

{
    text-decoration: none;
    font-size: 16px;
    color: rgb(13, 0, 189);
    margin-right: 0px;
    margin-left: 25px;
}
section .footer .row.row1 ul li a:hover
{
  text-decoration: underline;
}

section .footer .row.row2
{
    display: flex;
    justify-content: space-between;
}
section .footer .row .copyright
{
 color: rgb(0, 8, 253);
}
section .footer .row.row2 ul
{
    display: flex;
}
section .footer .row.row2 ul li
{
    list-style: none;
}

section .footer .row.row2 ul li a:hover
{
  text-decoration: underline;
}
section .footer .row.row2 ul:nth-child(2) li a 
{
    text-decoration: none;
    font-size: 14px;
    color: #000000;
    margin-right: 0px;
    margin-left: 25px;
}
