html, body{
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    padding-top: .5%;
}

#pageWrapperColumn{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 950px;
    height: cover;
    background-color: #bb0000;
}

.tab {
    display: flex;
    height: 10%;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: 5px #bb0000;
    cursor: pointer;
}

.tab button {
    cursor: pointer;
    transition: 0.3s;
}

.tab button:hover {
    background-color: #d0c0c0;
}

.tab button.active {
    background-color: #c0b0b0;
}

.tablinks{
    width: 27%;
    text-align: center;
    box-sizing: border-box;
    border: 5px solid #bb0000;
}

.tabcontent {
    display: none;
    width: 100%;
}

.mainInfo{
    width: 80%;
    margin: .5%;
    padding-left: 2%;
    padding-right: 2%;
    background-color: #ffffff;
}

#pesari{
    float:right;
    width:35%;
    border: 5px solid #000000;
}

.pics{
    width: 95%;
    border: 5px solid #000000;
}

#pehmot{
    float:left;
    width: 100%;
    border: none;
}

#skillsSection{
    display: flex;
    flex-wrap: wrap;
}

.skillBox{
    margin: 2%;
    padding-left: 2%;
    padding-right: 5%;
    border: 5px solid #bb0000;
}

.extraSide{
    width: 19%;
    height: 100%;
    color: #ffffff;
    padding-left: .2%;
}

 /* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: bold;
}
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
    background-color: #ccc;
}
  
  /* Style the collapsible content. Note: hidden by default */
.collapsecontent {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

.artpics{
    width: 96%;
    /*margin: 2%;*/
    padding-left: 2%;
    padding-right: 2%;
}

@media only screen and (min-width: 400px) and (max-width: 750px) {
    #pageWrapperColumn{
        width: 100%;
    }

    .tablinks{
        width: 33.3%;
    }

    .mainInfo{
        width: 100%;
    }
    
    .extraSide{
        display: none;
        width: 0%;
    }
}

@media only screen and (min-width: 751px) and (max-width: 950px) {
    #pageWrapperColumn{
        width: 100%;
    }
}