body
{
    background-color: #f4ff81;
    background-image: url('background.jpg'); /* Ścieżka do pliku z tłem */
    background-size: cover; /* Dopasowuje obraz do rozmiaru elementu */
    background-position: center; /* Ustawia obraz na środku */
    height: 100vh; /* Ustawia wysokość na 100% widoku */
    margin: 0; /* Usuwa domyślne marginesy */
    background-attachment: fixed;
    font-family: "Story Script", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.dancing-script-calligraphic 
{
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

#main_h1
{
    color: white;
    font-size: 45px;
    letter-spacing: 10px;
    text-shadow: 0 0 4px black;
    
}

#copyright
{
    color: white;
    font-weight: bold;
    text-shadow: 0 0 4px black;
    font-size: 25px;
    margin-top: 150px;
}

#description
{
    border: 2px solid black;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.6);
    height: auto;
    width: 65%;
    padding: 15px;
    text-align: center;
    word-wrap: break-word; /* Zawijanie długich słów */
    overflow-wrap: break-word; /* Zawijanie długich słów */
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 180px;
}

.option
{
    border: 2px solid black;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.6);
    height: auto;
    width: 33%;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
    transition-duration: 0.5s;
}

.option:hover
{
    background-color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
}

.link
{
    text-decoration: none;
    color: black;
}

.link:hover
{
    text-decoration: underline;
}

#poem
{
    border: 2px solid black;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    height: auto;
    width: 85%;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 180px;
}