body {
    display: flex;
    font-family:"Anonymous Pro", sans-serif;
    justify-content: center;
    align-items: center;
    font-size: large;
    height: 100vh;
    margin: 0;
    background-color: lightslategray;
}

* {
    box-sizing: border-box;
}

#card {
    display: flex;
    flex-direction: column;
    color: rgb(10, 10, 10);
    min-height: 300px;
    width: 600px;
    max-width: 90vw;
    background-color: rgb(250, 250, 250);
    box-shadow: 1px 1px 1px;
    padding: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease;

    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#card:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 15px;
}

h1 {
    text-align: center;
    font-family: "Goldman", 'Times New Roman', Times, serif;
    margin-bottom: 3px;
}

h3 {
    margin-bottom: 5px;
}

a {
    display: inline;
    align-items: center;
    color: cadetblue;
    text-decoration: none;
    gap: 5px;
}

#box2 a {
    display: flex;
    align-items: center;
    gap: 5px;
}

a:hover {
    color:darkgreen;
    text-decoration: none;
}

.box-container {
    display: flex;
    line-height: 1.5;
    gap: 10px;
    width: 100%;
}

.box {
    height: 90%;
    width: 50%;
    text-align: left;
    padding: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#box1 {
    width: 60%;
}

#box2 {
    width: 40%;
    line-height: 1.2;
}

/* Add mobile responsive styles */
@media (max-width: 768px) {
    body {
        font-size: medium;
        padding: 10px;
    }

    #card {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        margin: 0;
        min-height: auto;
    }

    .box-container {
        flex-direction: column;
        gap: 15px;
    }

    .box {
        width: 100% !important;
        height: auto !important;
        padding: 0;
    }

    #box1, #box2 {
        width: 100% !important;
        height: auto !important;
        line-height: 1.5;
    }

    h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    a {
        word-break: break-word;
    }
}