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

@font-face {
    font-family: 'Givonic Bold';
    src: url(/src/assets/Givonic_Fonts/Givonic-Bold.ttf),
    format("truetype") ;
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Givonic Regular';
    src: url(/src/assets/Givonic_Fonts/Givonic-Regular.ttf),
    format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Semibold';
    src: url(/src/assets/Inter_Fonts/Inter-SemiBold.ttf),
    format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Medium';
    src: url(/src/assets/Inter_Fonts/Inter-Medium.ttf),
    format("truetype");
    font-weight: 500;
    font-style: normal;
}

body {
    width: 100%;
    max-width: 100vw;
    height: 100%;
    max-height:100vh;

    padding: 0;
    margin: 0;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #191919;
}

.bodyWrapper {
    width: 700px;
    height: 500px;

    padding: 32px;
    margin-top: 96px;
    margin-bottom: auto;

    background-color: #333333;
    border-radius: 8px;
    box-shadow:2px 4px 10px rgba(0, 0, 0, .2) ;
}
ul {
    margin: 32px auto;
}


h1 {
    font-family: 'Givonic Bold';
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
    color: #999999;
}
p {
    font-family: 'Givonic Bold', sans-serif;
    font-size: 100px;
    font-weight: 700;
    font-style: normal;
    color: #CCCCCC;

}
li .caption {
    font-family: 'Inter Medium';
    font-size: 12px;
    line-height: 1;
    color: #999999;
}


.primary {
    padding: 9px 18px;
    font-size: 16;
    border-radius: 20px;
    color: white;

    border: none;
    background-color: black;

    margin: 8px 8px;
    transition: all ease 100ms;
    cursor: pointer;
}
.primary:hover {

    background-color: grey;
}



.secondary {
    padding: 9px 18px;
    font-size: 16;
    font-weight: 600;
    border-radius: 20px;
    color: black;

    border: solid 1px black;
    background-color: transparent;

    margin: 8px 8px;
    transition: all ease 50ms;
    cursor: pointer;
}

.secondary:hover {
    color: white;

    border: solid 1px white;
    background-color: black;
}

.stopWatchContainer ul {
    list-style: none;

    display: flex;
    flex-direction: row;

}

.Start {

    display: inline;
    width: 80px;
    height: 80px;
    margin: 3px 6px;
    
    border-radius: 45px;
    color: #E6E6E6;
    background-color: #02438C;
    border: none;

    cursor: pointer;
}

.Start:hover {
    color: #ffffff;
    background-color: #0469D9;
}

.Start:active {
    background-color: #0084E6;
}

.Start:focus-visible {
    color: #ffffff;
    background-color: #0084E6;
}

.Pause {

    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 3px 6px;

    width: 80px;
    height: 80px;
    
    border-radius: 45px;
    color: #E6E6E6;
    background-color: #02438C;
    border: none;

    cursor: pointer;
}

.Pause:hover {
    color: #ffffff;
    background-color: #0469D9;
}

.Pause:active {
    background-color: #0084E6;
}

.Pause:focus-visible {
    color: #ffffff;
    background-color: #0084E6;
}

.Restart {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    width: 80px;
    height: 80px;
    
    border-radius: 45px;
    color: #E6E6E6;
    background-color: transparent;
    border: solid 2px #e6e6e6;

    cursor: pointer;
}

.Restart:hover {
    border-color: #ffffff;
}

.Restart:active {
    color: #ffffff;
    background-color: #ffffff10;
}

.buttonContainer {
    margin-top: 32px;
    display: flex;
    flex-direction: row;

    justify-content: flex-start;
    align-items: center;
}