body{
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1b0f3b, #299bcf);
}

.sectionWrapper{
    height: 100vh;
    width: 100vw;
    justify-content: center;
}

.headerWrapper{
    height: 9vh;
    width: auto;
    display: flex;
    flex-direction: row;
    
    justify-content: space-around;
    align-content: center;

    background-color: black;
}

.sliderWrapper{
    width:15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

h1{
    font-size: 50px;
    margin: 5px 0 0 0;
    font-family: 'Courgette', cursive;
    color: white;
}

h2{
    color:white;
    margin: 0 0 2% 0;
    text-align: center;
}

a{
    color: white;
    text-decoration: none;
}

p{
    color:white;
    font-size: 14px;
    text-align: center;
    margin:0;
}


.slider{
    width: 100%;
    outline: none;
    margin: 0 0 5% 0;
    justify-self: center;
}

.headerRectangle{
    height: 70%;
    width: 3px;
    background-color: white;
}

#firstRect{
    position:fixed;
    left: 33.33vw;
    top:0;
}

#secondRect{
    position:fixed;
    left: 66.66vw;
    top:0;
}

.solveButton{
    background-color: transparent;
    color:white;

    cursor:pointer;
    border:none;
    overflow: hidden;
    outline: none;

    border-radius: 10px;
    width: auto;
    margin: 0 0 0 0;
    font-size: 45px;
    font-family: 'Courgette', cursive;
}

.page{
    display: flex;
}

.toolBar{
    background-color: black;
    margin: 13vh 0 0 3.5vw;
    height: 43vh;
    width: 18vw;
    border-radius: 10px;
}

.toolbarTitle{
    font-size: 40px;
    text-align: center;
    font-family: 'Courgette', cursive;
    margin: 5% 0 8% 0;
}

.toolButton{
    font-family: 'Anton', sans-serif;
    width:80%;
    margin: 5% 0 0 10%;
    background-color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 20px;
    outline: none;
    cursor:pointer;
}

.slidecontainer {
    width: 100%;
}
  
.slider:hover {
    opacity: 1;
}

.slider{
    width: 90%;
    margin-left:5%;
}

.puzzleWrapper{
    height: 80vh;
    width: 50vw;
    justify-items: center;
    margin:2vh 0 0 3.5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 3px solid white;
}

.puzzleSection{
    margin:0;
    padding:0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 1px 1px;
    border: 3px solid white;
}

.puzzleCell{
    outline:none;
    margin:0;
    padding:0;
    width:100%;
    height: 100%;
    background-color: black;
    color: white;
    border: 1px solid white;
    text-align:center;
    font-size: 6vh;
}

.aboutSection{
    height: 72vh;
    width: 20vw;

    background-color: black;

    margin: 6vh 0 0 2.5vw;
    border-radius: 10px;
}

.aboutText{
    font-size: 16px;
    padding: 0 4% 4% 4%;
}
