body {
    text-align: center;
    background-color: white;
    color: black;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;;
    margin: 0;
    padding-top: 70px;
}

a:link {
    font-size: 21;
    font-family: 'Times New Roman', Times, serif;
    color: blue;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 100;
}

img {
    width: 500px;
    border-radius: 30px;
    box-shadow: 13px 16px 0px -1px rgba(0, 0, 0, 1.00);
}

#box {
    border: 1px solid;
    padding: 10px;
    width: 500px;
    box-shadow: 5px 10px #0f0f0f;
    margin: 0 auto;
}

.button {
    background-color: #ffffff;
    padding: 10px 12px;
    border-radius: 17px;
    font-size: 20px;
    border: 4px solid #ababab;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;

    display: inline-block;
    margin: 40px auto 0 auto;
    text-decoration: none;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
