* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-size: calc(12vw + 16px);
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    height: 100dvh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.blinds {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(8vw + 10px);
    font-weight: bold;
    gap: 30px;
}

.next-blinds {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(2vw + 8px);
    font-weight: bold;
}

.triangle-left {
	width: 0;
	height: 0;
	border-top: 1.4vw solid transparent;
	border-right: 1.6vw solid #333;
	border-bottom: 1.4vw solid transparent;
}

.triangle-right {
	width: 0;
	height: 0;
	border-top: 1.4vw solid transparent;
	border-left: 1.6vw solid #333;
	border-bottom: 1.4vw solid transparent;
}

.triangle-left,
.triangle-right {
    cursor: pointer;
}

.controls-1 {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 5%;
    top: 50%;
}

.controls-2 {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 5%;
    top: 50%;
}

.controls-1 button,
.controls-2 button {
    padding: 10px;
    margin: 5px;
    font-size: Calc(1.2rem);
    font-weight: bold;
    border: none;
    border-radius: 5px;
    border: 1px solid #656565;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 932px) {
    .container {
        width: 100%;
        height: 100dvh;
        padding: 0;
        margin: auto;
    }

    .controls-1,
    .controls-2 {
        top: 50%;
        transform: translate(0%, -50%);
    }

    .controls-1 button,
    .controls-2 button {
        font-weight: 300;
        margin: 8px;
        padding: 10px 20px;
        font-size: Calc(1rem);
        transform: translate(0%, 0%);
        color: #333;
    }
}

@media screen and (max-width: 450px) {
    .controls-1,
    .controls-2 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        bottom: 5%;
        transform: translate(-50%, 0%);
        gap: 10px;
        /* top: 50%;
        transform: translate(0%, -50%); */
    }

    .controls-2 {
        /* bottom: 5%; */
        transform: translate(-50%, 20%);
    }

    .controls-1 button,
    .controls-2 button {
        position: relative;
        /* font-weight: 300;
        margin: 8px;
        padding: 10px 20px;
        font-size: Calc(1rem);
        transform: translate(0%, 0%);
        color: #333; */
    }
}
