body{
    background-image: url(background.jpg);
    background-color: black;
    background-position: top;
    background-size: cover;
    height: 100vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


@font-face {
  font-family: FuturaLight;
  src: url(Futura\ Light.otf);
}

@font-face {
  font-family: FuturaMedium;
  src: url(Futura\ Medium.otf);
}

@font-face {
  font-family: FuturaBold;
  src: url(Futura\ Bold.otf);
}

@font-face {
  font-family: LotRegular;
  src: url(Lot\ Regular.otf);
}


.grid-layout {
    display: grid;
    grid-template-areas:
        "header header"
        "aside content"
        "footer footer";
    grid-template-columns: 1fr 4fr;
    gap: 3px;
    padding: 5px;
    max-width: 1070px;
    border-radius: 10px;
    font-family: FuturaMedium;
    font-size: 16px;
}

.box {
    background: black;
    border-radius: 10px;
    color:  #e13221;
}

.header {
    grid-area: header;
    background: none;
    text-align: center;
    color: #e13221;
}

.aside {
    display: flex;
    flex-direction: column;
    grid-area: aside;
    padding: 5px;
    box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
}

.content {
    grid-area: content;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px;
    height: 550px;
    box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
}

.footer {
    grid-area: footer;
    text-align: center;
    font-family: FuturaLight;
    box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
}

.aside-links{
    font-size: 23px;
    font-family: FuturaBold;
}

.aside-links:hover{
    font-size: 23px;
    font-family: FuturaBold;
    color: white;
}

p{
    padding-left: 20px;
    padding-right: 20px;
}

a{
    text-decoration: none;
    color: #e13221;
}

table {
    margin-left: auto;
    margin-right: auto;
    width: 93%;
}

td {
    padding: 10px;
}

.image-container {
    position: relative;
    width: 140px;
    height: 140px; 
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.1s ease;
    z-index: 2;
}

.overlay-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container:hover .overlay-link {
    opacity: 1;
}

.links-socials{
    font-family: FuturaMedium;
    font-size: 19px;
}

#bc:hover{
    color: #1da0c3;
    background-color: transparent;
    text-decoration: none;
}

#tx:hover{
    color: #1da0f1;
    background-color: transparent;
    text-decoration: none;
}

#yt:hover{
    color: #ff0000;
    background-color: transparent;
    text-decoration: none;
}

#ig:hover{
    color: #fe0960;
    background-color: transparent;
    text-decoration: none;
}

#sc:hover{
    color: #f2721b;
    background-color: transparent;
    text-decoration: none;
}

#rym:hover{
  color: #006ed1;
  background-color: transparent;
  text-decoration: none;
}

#dg:hover{
    color: #f9e508;
    background-color: transparent;
    text-decoration: none;
}

#huntingbearslogo{
    width: 900px;
}

@media only screen and (max-width: 500px) {
    body{
        height: 100vh;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .grid-layout{
        grid-template-areas:
            "header"
            "content"
            "footer";
        grid-template-columns: 1fr;
        margin-left: 1px auto;
        margin-right: 1px auto;
    }
    #huntingbearslogo{
        width: 600px;
    }

    aside {
        display: none;
    }
}