
@import url('https://fonts.googleapis.com/css2?family=Freckle+Face&family=Hanalei+Fill&family=Rubik+Distressed&display=swap');

body {
    margin: 0;
}

.intro {
    height: 100vh;
    width: 100vw;
    display: flex;
    font-size: 2.5em;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("images/start_screen.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    font-family:"Freckle Face", serif;
    

}
button {
    font-size: 1.5em;
    font-family: "Freckle Face", serif;
    font-weight: 400;
    font-style: normal;
    padding: 0.3em 1em;
    border: none;
    color: white;  
    background: linear-gradient(135deg, #a0522d, #deb887); /* Wood-like colors */
    border: 2px solid #8b4513; /* Darker brown border */
    border-radius: 12px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
        }


button:hover {
    background: linear-gradient(135deg, #deb887, #a0522d); /* Slight color change on hover */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 0 6px 8px rgba(0, 0, 0, 0.2);
}

button:active {
    background: linear-gradient(135deg, #8b4513, #d2691e); /* Darker shade when clicked */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.1);
}
#nadpis {
    color: white;
}