@import url('Main_colours.css');

body
{
    background-color: var(--backgroud);
}


a
{
    color: snow;

}

body
{
    background-color: var(--backgroud);
    font-family:'Courier New', Courier, monospace;
    font-size: 20px;
    color: snow;
}
header
{
    
    top: 0px;
    background-color: var(--seconed);
    height: 70px;
    width: 99%;
    color: snow;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 48% 10% 40%;
}
header div
{

    display: flex;
    gap: 0%;
    text-align: center;
    position: relative;
    top: 10px;
}
header div h2
{
    width: 100%;
    position: relative;
    bottom: 20px;
}
header div a
{
    height: 50px;
    width: 100%;
}
header div a:hover
{
    background-color: var(--third);
    border-radius: 10px;

}
.Main_items
{
    position: relative;
    top: 20px;
    display: grid;
    grid-template-columns: 10% 90%;
    gap: 2%;
    color: snow;
    width: 95%;
}
aside
{

    gap: 10%;
    background-color: var(--seconed);
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    height: 700px;
    
}
aside nav
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
aside button
{
    position: relative;
    top: 10px;
    font-family:'Courier New', Courier, monospace;
    font-size: 25px;
    width: 95%;
    position: relative;
    margin-top: 10px;
    left: 2%;
    height: 90px ;
    background-color: var(--backgroud);
    color: snow;
    border-radius: 10px;
}
aside button:hover
{
    background-color: var(--backgroud);
    height: 100px; ;
}
@media (max-width:1210px) {
    header
    {
        text-align: center;
    }
    .Main_items
    {
        position: relative;
        top: 20px;
        left: 2%;
        display: flex;
        flex-direction: column;
        gap: 2%;
        color: snow;
        width: 95%;
    }
    aside
    {

        background-color: var(--seconed);
        height: 150px;
        margin-bottom: 30px;
        overflow-x: scroll;
         
    }
    aside nav
    {
        display: grid;
        grid-template-columns: 35% 33% 35% 33% 35%;
    }
    aside button
    {
        position: relative;
        top: 10px;
        font-family:'Courier New', Courier, monospace;
        font-size: 25px;
        position: relative;
        left: 2%;
        background-color: var(--backgroud);
        color: snow;
        border-radius: 10px;
    }
    aside button:hover
{
    background-color: var(--backgroud);
    width: 100%; ;
}
}
@media (max-width:519px) 
{
        aside nav
    {
        display: grid;
        grid-template-columns: 45% 43% 45% 43% 45%;
    }
    aside button
    {
        width: 99%;
    }
    
}