h1 {
    font-size: 6rem;
}

p, a {
    font-size: 2.5rem;
}

#head-nav {
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: 0 auto;
    gap: 10vw;
}

#head-nav a {
    color: black;
    text-decoration-color: black;
    width: 100%;
    text-align: center;
}

#fish-collection {
    background-color: #d1d1d15f;
    border-radius: 5px;
    text-align: center;
}

#fish-container {
    display: grid;
    grid-template-columns: auto auto auto;
    width: fit-content;
    margin: 20px auto;
    gap: 15px;
}

.fish-item {
    height: 14vw;
    width: 14vw;
    background-color: #222;
    border-radius: 5px;
}

#area-container {
    margin: 5vh auto;
    width: 60vw;
    height: 60vh;
    background-color: #002f8d;
}

#area-target {
    position: relative;
    top: 45%;
    left: 45%;
    width: 5vh;
    height: 5vh;
    border-radius: 8px;
    background-color: #6a4a00;
    z-index: 100;
}

#fishing-controls {
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: 0 auto;
}

#fishing-controls a {
    color: black;
    text-decoration-color: black;
    width: 100%;
    text-align: center;
}

.active-link {
    color: rgb(0, 139, 161) !important;
    text-decoration-color: rgb(0, 139, 161) !important;
}