body{
    margin: 0;
    padding: 0;
    background: rgb(252, 251, 251);
    color: white;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.tableDiv{
    width: 100%;
    padding: 10px 0 10px 0;
    font-size: 15px;
    background-color: #00A7FF;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 15px #028dd8;
    box-sizing: border-box;
    overflow: hidden;
}

.tableDiv > table{
    width: 100%;
    padding: 0 10% 0 13%;
}
.tableRow > th{
    width: 100px;
}

.tableRow > th:nth-of-type(1){
    display: flex;
    flex-grow: 1;
    text-align: left;
    font-size: 25px;
}

.firstTH{
    display: flex; 
    align-items: center;
    gap: 10px;
}

.selectable {
    cursor: pointer;
    background-color: #00A7FF;
    border-radius: 8px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectable:hover {
    filter: brightness(1.3);
}

.selectable:active {
    filter: brightness(1.1);
}

#circle {
    width: calc(16 * 3px);
    aspect-ratio: 1/1;
    position: relative;
    margin: 0 auto;
    animation: rotate 5s linear infinite;
}

#circle span {
    width: 1em;
    height: 1em;
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
}

@keyframes rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.mainDiv{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.middleDiv{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    padding-top: 100px;
    padding-bottom: 220px;
    background-color: #00A7FF;
    
}

.middleDivLeft{
    width: 40%;
}

.screenshotsDiv{
    width: 100%;
    padding-bottom: 150px;
    text-align: center;
    color: black;
}

.screenshot {
    border-radius: 25px; 
    box-shadow: 0 2px 15px #028dd8;
}

.gallery {
    display: block;
    justify-content: center;
    gap: 40px;
}

.gallery img {
    margin: 10px;
}

.featuresDiv {
    width: 100%;
    padding-bottom: 150px;
    text-align: center;
    color: black;
}

.featureBoxContainer {
    width: 100%;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, auto);    
    gap: 20px;
    color: white;
}

.featureBox{
    width: 100%;
    max-width: 400px;

    height: 200px;
    
    background-color: #00A7FF     ;
    text-align: left;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 2px 2px 15px rgb(221, 219, 219);
    box-sizing: border-box;
}

.contactDiv{
    width: 100%;
    padding-bottom: 150px;
    text-align: center;
    color: black;
    border-top: 2.5px solid #e2e2e2;
    box-shadow: 0 2px 15px #cecdcd;
    background-color: white;
}

@media only screen and (max-width: 1200px) {
    .middleDiv {
      gap: 100px;
    }
}

@media only screen and (max-width: 1200px) {
    .middleDiv {
      gap: 100px;
    }
}

@media only screen and (max-width: 816px) {
    .tableRow div:nth-child(2) {
        display: block;
    }
}

@media only screen and (max-width: 770px) {
    .featureBoxContainer {
        grid-template-columns: auto;
    }
}

@media only screen and (max-width: 700px) {
    .middleDiv {
        display: block;
    }

    .middleDivLeft {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .middleDivRight {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}