body{
    /*background-color: rgba(230, 255, 230, 1);*/
    font-family: 'Lato', sans-serif;
    font-size:  20px;
    color: black;
}

#pytanie {
  font-size: 12px !important;
}

h1{
    font-size: 48px;
}

/* Nieodwiedzony link */
a:link{
    color:blue;
}

/* Odwiedzony link */
a:visited{
    color:black;
}

/* Link po najechaniu kursorem */
a:hover{
    color:red;
}

#container{
            font-size: 16px;
}

.navbar{
    background-color: rgba(200, 250, 200, 1);
    color: black;
    height: 70px;
}

.logo{
    text-align: left;
    margin-left: 30px;
    margin-top: 10px;
    margin: 0px;
}

#logo-name{
    margin-top: 20px;
}

.col-md-6{
    float:left;
}

#content{
    width: 100%;
    float:left;
    padding: 40px;
}

.contentt{
    margin-top: 50px;
    min-height: 900px !important;
}

#footer{
    background-color: rgba(180, 250, 180, 1);
    text-align: center;
    padding: 10px;
    color: black
}

#Main{
float:left;
padding: 10px;
}

.output_txt{
    font-size: 14px;
}

.col-2{
    float: left;
    height: 60px;
    padding: 10px;
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
}

.option{
    float:left;
    padding: 10px;
    margin-left: 20px;
    text-align: center;
    font-size: 18px;
    opacity: 0.8;
    border-radius: 20px;
    display: inline-block;
}

.option:hover{
    background-color: rgba(160, 250, 160, 1);
    color: rgba(40, 140, 40, 1);
    cursor: pointer;
}

a.link_html5
{
    color:rgba(80, 180, 80, 1);
    text-decoration: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 60px;
    box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.2);
    z-index: 100;
    top: 50px; /* Przesuwa w dół */
    /* Dodane właściwości */

    transition: bottom 0.5s ease; /* Dodaj płynność animacji */
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Wysuwane menu po najechaniu kursorem */
.dropdown:hover .dropdown-content {
    display: block;
    bottom: -190%; /* Pokaż menu pod przyciskiem */
}


