@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");

* {
    font-family: "Poppins", sans-serif;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("/img/bg.webp");
    background-color: darkolivegreen;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.container {
    position: relative;
    width: calc(100% - 90px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(9px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    margin-top: auto;
    margin-bottom: 30px;
    z-index: 1;
}

.controls {
    position: absolute;
    top: 0;
    right: 45px;
    width: 270px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(9px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 45px 45px 90px;
    z-index: 0;
}

.controls .logo,
.controls .number,
.controls .buttons {
    margin: 15px;
}

.controls .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.controls .buttons button {
    position: relative;
    width: 120px;
    height: 45px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(9px);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin: 0 3px;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(9px);
}

.controls .badge {
    white-space: nowrap;
    vertical-align: baseline;
    padding: 15px;
    width: 120px;
    height: 120px;
    color: darkolivegreen;
    font-weight: bold;
    font-size: 6em;
    line-height: 1.4em;
    text-align: center;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(9px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    margin: -15px 24px -15px -45px;
}

.title ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.title li {
    white-space: nowrap;
    vertical-align: baseline;
    padding: 15px;
    width: 60px;
    height: 60px;
    color: darkolivegreen;
    font-weight: bold;
    font-size: 3em;
    line-height: 1.4em;
    text-align: center;
    margin: 18px 0;
}

.row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.col {
    flex-grow: 1;
    width: 6.6%;
    margin: 9px 0;
}

.badge {
    white-space: nowrap;
    vertical-align: baseline;
    padding: 15px;
    width: 60px;
    height: 60px;
    color: darkolivegreen;
    font-weight: bold;
    font-size: 3em;
    line-height: 1.4em;
    text-align: center;
}

.badge-secondary {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(9px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
}

.badge-success {
    background: rgba(0, 255, 0, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(9px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.badge-danger {
    background: rgba(255, 0, 0, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(9px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.rounded-circle {
    border-radius: 50%;
}
