@import url("nyomtatas.css") print;

/*Az oldal teljes tartalmára vonatkozó stílusok*/
body {
    background-image: url("../media/movie.png");
    background-attachment: fixed;
    background-size: cover;
    font-size: 1.3em;
    font-family:  Verdana, Geneva, Tahoma, sans-serif;
    padding: 2%;
}

/*A címsorokra és feliratokra vonatkozó stílusok*/
h1, h2, figcaption
{
    text-align: center;
    font-weight: bold;
}

/*Az aktuális menüpontra vonatkozó stílusok*/
#current a 
{
    font-weight: bold;
    color: darkblue;

}

/*A menüre vonatkozó stílusok*/
nav
{
    background-color: aquamarine;
    border-radius: 2px;
}

/*Feliratra vonatkozó stílus*/
caption
{
    color: black;
}

/*Főtartalomra vonatkozó stílusok*/
main 
{
    background-color: aqua;
}

/*A láblécre vonatkozó stílusok*/
footer 
{
    background-color: aquamarine;
    text-align: center;
}

/*A kezdőlap képeinek stílusai*/
.mainPageImages
{
    max-width: 50%;
    max-height: 50%;
    float: left;
    padding-right: 2%;
}

/*Nagyobb képek stílusai*/
.screenImages
{
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

/*Kártyák, harmonika egyéb stílusai*/
.card, .accordion-item
{
    background-color: aqua;
    max-height: 70%;
    
}

.accordion-button, .accordion-header
{
    background-color: aquamarine;
}


/*Látogatott és nem látogatott hivatkozások stílusai*/
a:link
{
    color: green;

}

a:visited
{
    color: purple;

}

/*A kezdőlap és a könyvsorozat oldal stílusai*/
#authorFluid, #bookFluid, #firstBookFluid, #secondBookFluid, #thirdBookFluid
{
    background-color: aquamarine;
    margin-left: 0%;
    margin-right: 0%;
    padding: 5%;
    border: 1px solid black;
}

/*A kezdőlap és a könyvsorozat szöveges tartalmára vonatkozó stílusok*/
#bookText, #authorText, .books
{
    padding-left: 2%;
    text-align: justify;
}

/*A Galéria oldalhoz tartozó stílusok*/

.row
{
    display: flex;
    flex-wrap: wrap;
}

.img-thumbnail
{
    max-height: 70%;
}

.column
{
    max-width: 25%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.column img
{
    width: 100%;
    max-height: 70%;
    vertical-align: middle;
    object-fit: fill;
}

/*Az űrlapra és a mezőire használt stílusok*/

input, textarea 
{
    max-width: 60%;
    border-radius: 2.5%;
    font-size: 1em;
    font-family: sans-serif;
    text-wrap: wrap;
    margin-bottom: 5%;
}

form
{
    border: 3px solid aquamarine;
    padding-right: 50%;
    text-align: center;
}

#radioUj
{
   margin-right: 3%;
}

#titokzatos
{
    margin-left: 1.5%;
}

#borostyan
{
    margin-left: 5%;
}

/*A videóra és a leírására alkalmazott stílusok*/

video
{
    max-width: 100%;
    max-height: 100%;
}

.videoSummary
{
    text-align: justify;
    padding-right: 2%;
    padding-left: 2%;
}

.summary
{
    text-align: center;
}

/*A táblázatra vonatkozó stílusok*/
.table
{
    border: 1px solid aquamarine;
    text-wrap: wrap;
    overflow: hidden;
    text-align: center;
}

td, tr, th
{
    border: 1px solid black;
}


/*Egyéb képekre használt stílusok*/
.polarImage
{
    max-width: 50%;
    max-height: 50%;
    float: right;
    padding-right: 2%;
    margin-top: 10%;
    vertical-align: center;
}

/*A képernyőolvasó számára fenntartott stílusok*/
.forScreenRecorders {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
  }
  
.forScreenRecorders:focus {
    top: 0;
  }

/*Reszponzívitáshoz tartozó média lekérdezések*/
@media screen and (max-width: 900px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
}

@media screen and (max-width: 570px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
}