/* styles for hobbies page */
.content {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    padding-bottom: 60px;
}

.btn-group {
    grid-column: 1,3;
    margin: 1vw;
    border: 2px black solid;
}

article {
    grid-row: 2;
    grid-column: 1, 2;
    background-color: rgba(0, 128, 128, 0.479);
    color: white;
    border: groove rgba(0, 0, 0, 0.568);
    border-radius: 10px;
    width: 50vw;
    margin: 1vw;
    padding: 5px;
    width: auto;
    height: auto;
}

article a {
    text-decoration: none;
    color: white;
}

.image-section {
    margin: 1vw;
    grid-row: 2;
    grid-column: 2, 3;
}

.image-section img {
    width: 25vw;
    border-radius: 10px;
}


/* elements with hide class are hidden when page is loaded, change visibility of elements based on the chosen radio button */
.hide {
    display: none;
}