*{
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background-color);
}
:root {
    --primary-color : #cc0066;
    --secondary-color : #FF69B4;
    --background-color: #ffff;
    --font-color: black;
}
.dark-mode {
    --primary-color : #cc0066;
    --secondary-color : rgb(36, 34, 34);
    --background-color: black;
    --font-color: white;
}
h1 {
    color: var(--primary-color);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-left: 30%;
    display: inline-block;
}
.dark-icon{
    height: 40px;
    margin-bottom: 12px;
    margin-left: 220px;
}
.container {
    height: 700px;
    width: 500px;
    background-color: var(--secondary-color);
    display: grid;
    margin: auto;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    border-radius: 50px;

}

/*timers*/
.label {
    align-self: center;
    justify-self: center;
    font-size: 30px;
    font-weight: bold;
    color: var(--font-color);
}

#work {
    grid-area: 1 / 2 / 1 / 2;
}
#break {
    grid-area: 1 / 4 / 1 / 4;
}
#cycles {
    grid-area: 1 / 3 / 1 / 3;
}

.timer {
    display: flex;
    align-self: center;
    justify-self: center;
    font-size: 30px;
    font-weight: bold;
    padding-top: 10%;
    padding-left: 10%;
}

p {
    margin: 0;
    padding: 0;
}

#counter {
    grid-area: 2 / 3 / 2 / 3;
    color: red;
    background-color: #ffff;
    width: 130px;
    height: 44px;
    border-radius: 20px;
    text-align: center;
}

#work-timer {
    grid-area: 2 / 2 / 2 / 2;
    background-color: #ffff;
    width: 130px;
    height: 44px;
    border-radius: 20px;
    
}

#break-timer {
    grid-area: 2 / 4 / 2 / 4;
    background-color: #ffff;
    width: 130px;
    height: 44px;
    border-radius: 20px;
    text-align: center;
}

/*buttons*/
.btn {
    align-self: center;
    justify-self: center;
    width: 130px;
    height: 44px;
    background-color: var(--primary-color);
    color: #ffff;
    font-size: 20px;
    border-radius: 20px;
    border: none;
    margin-right: 20px;
}

#start {
    grid-area: 3 / 2 / 3 / 2;
}

#reset {
    grid-area: 3 / 3 / 3 / 3;
}

#stop {
    grid-area: 3 / 4 / 3 / 4;
}
/*responsive*/
@media only screen and (min-width: 1300px) {
    h1{
        margin-left: 500px;
    }
    .dark-icon{
        margin-right: 100px;
    }
    .container{
        height: 700px;
        width: 900px;
    }
}