body{
    background-color: rgb(177, 208, 224);
}

#logo{
  position: absolute;
  bottom: 5%;
  max-width: 15%;
  left: 42.5%;
}

a { color:rgb(23, 202, 98);
    text-decoration: none;
    } /* Globally */

/* Each state */

a:visited { text-decoration: none; color:rgb(23, 202, 98); }
a:hover { text-decoration: none; color:rgba(214, 16, 16, 0.705); }
a:focus { text-decoration: none; color:yellow; }
a:active { text-decoration: none; color:black } 

.topka {
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    margin: auto;
    width: 25%;

    border: 6px solid rgb(26, 55, 77);

    background-color: rgb(64, 104, 130);
    padding: 10px;
    text-align: center;
  }

.dlauz{
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    float: left;

    margin: auto;
    width: 25%;

    border: 6px solid rgb(26, 55, 77);

    background-color: rgb(64, 104, 130);
    padding: 10px;
    text-align: center;
}

.dlakli{
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    float: right;

    margin: auto;
    width: 25%;

    border: 6px solid rgb(26, 55, 77);

    background-color: rgb(64, 104, 130);
    padding: 10px;
    text-align: center;
}

/* TOP NAVBAR */

/* Add a black background color to the top navigation */
.topnav {
    background-color: rgb(105, 152, 171);
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Open Sans', sans-serif;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}