* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

body {
    height: 100vh;
    width: 100%;
    background: rgba(36, 38, 63, 0.932);
}

h1 {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    color: white;
    font-size: 50px;
    text-transform: uppercase;
}

h2 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 25px;
    text-transform: uppercase;
    transition: ease-in 0.4s all;
}

.description {
    color: black;
    font-weight: 600;
    /* border-top: 5px solid black;
    border-bottom: 5px solid black; */
    width: 25%;
}

.price {
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: white;
    padding: 5px 5px;
    position: relative;
}

.price::before {
    content: '(';
    position: absolute;
    padding-right: 100px;
}

.price::after {
    content: ')';
    position: absolute;
    padding-left: 100px;
}

.time {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    color: white;
    background: black;
    font-size: 25px;
    text-transform: uppercase;
    padding-top: 5px;
}

ul {
    list-style-type: none;
    text-align: center;
}

li {
    margin: 10px 0px;
    transition: ease-in 0.4s all;
}

.support{
    
    padding: 10px;
    /* background: rgb(0, 0, 0); */
    color: white;
    transition: ease all 0.4s;
}


input {
    height: 38px;
    width: 250px;
    padding-left: 10px;
}

.fields {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

input[type='text'] {
    margin-bottom: 8px;
}

button {
    height: 38px;
    width: 250px;
    margin-top: 8px;
    border: none;
    background: black;
    color: white;
    border: solid white 1.5px;
    text-transform: uppercase;
}

.stockchart {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}