body
{
    background-color: #000000;
    overflow-y: scroll;
}
#home_body
{

}
#contact_body
{

}
#portfolio_body
{
    margin: 0;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
}
#about_body
{

}
header
{
    background-color: #000000;
    position: sticky;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;

}
#header-title
{
    padding-bottom: 3px;
}
.img_link
{
    display: none;
    margin-right: 10px;
    text-align: right;
}
.title
{
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 60px;
    margin: 5px;
    color: #ff0000;
    text-align: center;
}
.page-text
{
    font-family: 'Outfit', sans-serif;
    color: #ff0000;
    text-align: center;

}
.header_link
{
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    text-align: center;
    color: #ff0000;
    padding: 5px;
    display: inline-block;
    width: auto;
}
#home_intro
{
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    margin-top: 200px;
    margin-left: 250px;
    margin-right: 250px;
}
.section
{
    flex: 1 1 33.333%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    background-color: #000000;
    color: #ff0000;
    height: 80%;
}


.top_left
{
    background-color: #000000;
    color: #ff0000;
}
.top_middle
{
    background-color: #000000;
    color: #ff0000;
}
.top_right
{
    background-color: #000000;
    color: #ff0000;
}

.btm_left
{
    background-color: #000000;
    color: #ff0000;
}
.btm_middle
{
    background-color: #000000;
    color: #ff0000;
}
.btm_right
{
    background-color: #000000;
    color: #ff0000;
}



#play-button-div
{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 26%;
}
#play-button
{

    flex: 1 1 14.2857%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 20px;
    background-color: #000000;
    color: #ff0000;
    height: 40px;
    box-shadow: 0 0 10px #ff0000;
}
#c4-buttons
{
    margin: 0 auto;
    flex-wrap: wrap;
    width: 26%;
    display: none;

}
.c4-button
{
    flex: 1 1 14.2857%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 10px;
    background-color: #000000;
    color: #ff0000;
    height: 40px;
    box-shadow: 0 0 10px #ff0000;
}
.connect4-board {
    display: grid;
    grid-template-columns: repeat(7, 60px);
    grid-template-rows: repeat(6, 60px);
    gap: 8px;
    background-color: #1a6ed8;
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
    margin: 0 auto;

}
.cell {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000;
}
#c4-info-text
{
    font-family: 'Outfit', sans-serif;
    color: #ff0000;
    text-align: center;
}