*,*::after,*::before {
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: "Chakra Petch", Tahoma, sans-serif;
}

:root {
    --xlarge-text: clamp(0.5em,25vh,10em);
    --button-text: clamp(0.5em, 3vh, 2em);
    --back-colour: lightblue;
    --mid-colour: rgba(203, 253, 167,0.8);
    --for-colour: darkblue;
}

body {
    background: url("/assets/homebackground.png");
    height: 100vh;
    width: 100vw;
}
.plip-link {
    height: 40px;
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.plip-logo {
    height: 25px;
    border-radius: 8px;
    padding: 2px;
    margin-right: 5px;
    margin-left: 5px;
    box-shadow: 1px 1px 2px 1px grey;
}
.clock-outer-container {
    position: absolute;
    background: var(--mid-colour);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 75%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    box-shadow: 1px 1px 5px 3px black;
    border-radius: 20px;
}

.clock-face {
    display: flex;
    font-size: 4em;
}

.clock-display-container {
    height: 70%;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.clock-section {
    height: 100%;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timer-separator {
    height: 70%;
    width: 12.5%;
    font-size: var(--xlarge-text);
    display: flex;
    justify-content: center;
    align-items: center;
}
.timer-display {
    height: 70%;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--xlarge-text);
    text-align: center;
}
.seconds-display {
    width: 100%;
    justify-content: flex-start;
}
@media (max-width: 1000px) {
    .timer-display {
        font-size: 7em;
    }
}
@media (orientation: portrait) {
    .clock-outer-container {
        height: 50%;
        width: 98%;
    }
    .clock-section {
        width: 30%;
    }
    .timer-display {
        font-size: 4em;
    }
    .timer-separator {
        font-size: 6em;
        height: 65%;
        width: 5%;
    }
}
.timer-buttons {
    height: 30%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    font-size: var(--button-text);
}
.plus-1-button, .plus-5-button {
    width: 40%;
    height: 40%;
    background-color: var(--for-colour);
    border-radius: 10px;
    box-shadow: 1px 1px 3px 1px black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.reset-button {
    width: 80%;
    height: 40%;
    background-color: var(--for-colour);
    border-radius: 10px;
    box-shadow: 1px 1px 3px 1px black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.set-timer-button {
    width: 80%;
    height: 15%;
    background-color: var(--for-colour);
    border-radius: 10px;
    box-shadow: 1px 1px 3px 1px black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: var(--button-text);
}