/* styles.css */
body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}


.navBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navBar a {
    color: #757575;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    margin: 5px 0;
    width: auto;
    text-align: center;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

.navBar a:hover {
    color: #ffffff;
    background-color: #777777;
    border-radius: 5px;
}

.content {
    margin-top: 60px;
    padding: 20px;
}



.title
    {
        color: rgb(65, 65, 65);
        text-align: center;
        font-family: 'Times New Roman', Times, serif;
        font-size: 36px;
        margin-top: 1%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        transform: translateY(70px);
    }


    .box {
        font-family: 'Times New Roman', Times, serif;
        font-size: 24px;
        position: absolute;
        background-color: white;
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 4px;
        cursor: pointer;
        user-select: none;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        touch-action: none;
      }

      #load-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 20px;
        font-size: 28px;
        font-family: 'Times New Roman', Times, serif;
        background-color: #444444;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
      }
  
      #load-button:hover {
        background-color: #333333;
      }


@media (orientation: portrait) {
    .navBar a {
        font-size: 48px;
    }
    .box {
        transform: scale(1.7);
    }

    .title {
        transform: translateY(120px);
    }

    #load-button {
        transform: translateX(-50%) scale(1.3);
    }
    
}