@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Barlow", sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

main {
    height: 100vh;
    width: 100vw;
}

.container {
    height: 100%;
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.top {
    width: 90vw;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top #left {
    color: black;
    font-weight: 600;
}

.top #button {
    font-weight: 600;
    color: white;
    background-color: black;
    padding: 8px 15px;
    border-radius: 5px;
}

.top #carret {
    padding-left: 10px;
}

.top #right {
    font-weight: 600;
    color: black;
}


.row-box-1 {
    width: 100%;
    height: 105px;
    display: flex;
    flex-direction: row;
}

.row-box-2 {
    width: 100%;
    height: 105px;
    display: flex;
    flex-direction: row;
}

.row-box-3 {
    width: 100%;
    height: 105px;
    display: flex;
    flex-direction: row;
}

.row-box-4 {
    width: 100%;
    height: 105px;
    display: flex;
    flex-direction: row;
}

.row-box-1 #box1 {
    background-color: #eccc68;
}

.row-box-1 #box2 {
    background-color: #ff7f50;
}

.row-box-1 #box3 {
    background-color: #ff6b81;
}

.row-box-1 #box4 {
    background-color: #a4b0be;
}

.row-box-1 #box5 {
    background-color: #57606f;
}

.row-box-2 #box1 {
    background-color: #ffa502;
}

.row-box-2 #box2 {
    background-color: #ff6348;
}

.row-box-2 #box3 {
    background-color: #ff4757;
}

.row-box-2 #box4 {
    background-color: #747d8c;
}

.row-box-2 #box5 {
    background-color: #2f3542;
}

.row-box-3 #box1 {
    background-color: #7bed9f;
}

.row-box-3 #box2 {
    background-color: #70a1ff;
}

.row-box-3 #box3 {
    background-color: #5352ed;
}

.row-box-3 #box4 {
    background-color: #ffffff;
}

.row-box-3 #box5 {
    background-color: #dfe4ea;
}

.row-box-4 #box1 {
    background-color: #2ed573;
}

.row-box-4 #box2 {
    background-color: #1e90ff;
}

.row-box-4 #box3 {
    background-color: #3742fa;
}

.row-box-4 #box4 {
    background-color: #f1f2f6;
}

.row-box-4 #box5 {
    background-color: #ced6e0;
}

.box {
    width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}



.box h3 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    padding-right: 5px;
    padding-bottom: 5px;
    position: absolute;
    right: 5px;
    bottom: 0;
}

button {
    width: 50%;
    height: 50%;
    color: transparent;
    background: transparent;
    border: none;
    cursor: pointer;
}

button:hover {
    color: white;
    border: 1px solid white;
    border-radius: 5px;
}
.bottom {
    width: 90vw;
    height: 50px;
    display: flex;
    justify-content: right;
    align-items: center;
    text-align: left;
    color: black;
    font-weight: lighter;
    font-size: small;
    text-transform: capitalize;
}

.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 5px;
}

.slider.round:before {
    border-radius: 10%;
}

@media screen and (max-width:1024px) {
    button {
        display: none;
    }

    .box h3 {
        display: none;
    }

    #button,
    #right {
        display: none;
    }
}