@font-face {
    font-family: MortendBold;
    src: url('./fonts/Mortend-Bold.ttf');
}

@font-face {
    font-family: PoppinsRegular;
    src: url('./fonts/Poppins-Regular.ttf');
}

html {
    font-family: MortendBold;
    background-color: black;
    min-width: 1010px;
}

.heading {
    color: red;
    font-size: 24px;
    width: fit-content;
    margin: 20px auto;
}

.box {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.btn_box {
    font-size: 11px;
    width: 120px;
    border: 1px solid black;
    height: 30px;
    padding: 5px 5px 8px;
    margin: 3px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to bottom,rgb(216, 216, 216),rgb(154, 154, 154),rgb(166, 166, 166),rgb(79, 79, 79));
    box-shadow:2px 3px 4px rgba(0,0,0,.2), inset 0 0 20px rgba(0,0,0,.1);
}

.btn_text {
    margin-bottom: 2px;
    text-align: center;
    height: 100%;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    background-color: darkgrey;
    border-radius: 20px;
    vertical-align: middle;
}

.content button {
    background-color: rgb(234, 234, 234);
    border: 1px solid white;
    height: 20px;
    padding: 2px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 24px;
    box-shadow:2px 3px 4px rgba(0,0,0,.2), inset 0 0 20px rgba(0,0,0,.1);
}

.content button:hover {
    background-color: rgb(236, 134, 56);
}

.container {
    display: flex;
    flex-wrap: wrap;
    /* width: fit-content; */
    border: 2px solid darkgray;
    background-color: rgb(110, 110, 110);
    min-height: 50px;
    border-radius: 24px;
    padding: 10px;
    margin: 5px auto;
}

.container_text {
    width: fit-content;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.page {
    min-width: 1010px;
}

#one {
    background-color: rgba(192, 0, 0, 0.7);
}

#two {
    background-color: rgba(192, 170, 0, 0.7);
}

#three {
    background-color: rgba(48, 192, 0, 0.7);
}

#four {
    background-color: rgba(0, 67, 192, 0.7);
}

#five {
    background-color: rgba(160, 0, 192, 0.7);
}

#six {
    background-color: rgba(192, 83, 0, 0.7);
}

#text {
    text-shadow: -1px 0 3px  #FFF;
}