body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 1.6;
    text-align: center;
    user-select: none;
}


h1 {
    background-color: lightblue;
    border-radius: 20px;
    animation: header 0.9s cubic-bezier(.22, .9, .38, 1) both;
    will-change: transform, opacity;
}

p {
    font-size: 17px;
    background-color: lightgray;
    border-radius: 10px;
    padding: 10px;
    animation: textOpacity 1.2s ease-out both;
}

img {
    max-width: 100%;
    border-radius: 10px;
}

@keyframes textOpacity {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes header {
    from {
        transform: translateY(-120%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav ul {
    background-color: lightgray;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

nav a {
    display: inline-block;
    color: black;
    ;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}


div {
    display: flex;
    justify-content: center;
    align-items: center;
}

table {
    border-style: solid;
    border-width: 3px;
    margin-left: 20px;
}

a {
    color: black;
    text-decoration: none;
}

input, textarea {
    width: 300px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    border: none;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}