:root {
    --primary: #fc3f3f;
    --secondary: #db4040;
    --dark:#14171f;
  }


section.projects {
    height: fit-content;
    background-color: #FFFFFF;
}

.dots .active {
    background: var(--primary);
}

.page {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.projectcard {
    border-radius: 15px;
}

@media screen and (max-width: 768px) {
    .pages {
        height: 75vh;
        flex-direction: column;
        align-items: center;
    }
    .page {
        grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: fit-content;
    }
    .projectcard {
        width: 150px;
        height: 150px;
    }
    .projectbtns {
        width: 100px;
    }
    .projectbtns {
        flex-direction: row;
        height: 100px;
        width: 100%;
    }
}