@font-face {
    font-family: "Netflix";
    src: url('Netflix_Fonts/NetflixSans-Regular.otf');
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Netflix";
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

footer {
    width: 100%;
    height: 80px;
    background-color: black;
    color: white;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-size: 1.3rem;
    bottom: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
}

a {
    color: #fff;
    text-decoration: none;
}

.main-content {
    width: 90%;
    background: #efefef;
    max-width: 500px;
    /* min-width: 375px; */
    min-height: 215px;
    padding: 20px;
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-top: 100px; */
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(191, 191, 191, 0.75);
    margin: 250px 40px 0px 40px;
}

.main-content h1{
    min-width: 80%;
    font-size: 2.2em;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid black;
    padding-bottom: 15px;
}

p {
    font-size: 3.5rem;
    font-weight: 600;
}

#display-container {
    background: #fff;
    min-width: 115px;
    min-height: 92px;
    padding: 10px 40px 10px 40px;
    border-radius: 5px;
    box-shadow: inset 0em 0.1em 0.2em rgb(0, 0, 0, 0.25);
}

#counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

#buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

#increment {
    /* width: 140px;
    height: 45px; */
    background: #01ae43;
    color: #fff;
    border: none;
    padding: 10px 20px 10px;
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: 100;
    transition: all 0.3s;
    box-shadow: inset 0em 0.1em 0.2em rgba(3, 123, 49, 0.75);
    cursor: pointer;
}

#decrement {
    /* width: 140px;
    height: 45px; */
    background: #ff3333;
    color: #fff;
    border: none;
    padding: 10px 20px 10px;
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: 100;
    transition: all 0.3s;
    box-shadow: inset 0em 0.1em 0.2em rgba(123, 3, 3, 0.75);
    cursor: pointer;
}

#reset {
    /* width: 140px;
    height: 45px; */
    background: #697281;
    color: #fff;
    border: none;
    padding: 10px 20px 10px;
    font-size: 1.2rem;
    border-radius: 10px;
    font-weight: 100;
    transition: all 0.3s;
    box-shadow: inset 0em 0.1em 0.2em rgba(83, 83, 83, 0.75);
    cursor: pointer;
}

#increment:hover {
    background: #00a54d;
    transform: scale(1.1);
}

#increment:active {
    background: #00b454;
    transform: scale(1.05);
}

#decrement:hover {
    background: #e3291c;
    transform: scale(1.1);
}

#decrement:active {
    background: #fc4d4d;
    transform: scale(1.05);
}

#reset:hover {
    background: #5f6673;
    transform: scale(1.1);
}

#reset:active {
    background: #6d7685;
    transform: scale(1.05);
}