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

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

body {
    padding: 5rem;
    font-family: Poppins;
    background: #FAFAFA;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 5rem;
}

main {
    width: 100%;
}

button {
    border: none;
    border-radius: 7px;
    background-color: #008cba;
    color: white;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    transition-duration: 0.1s;
    cursor: pointer;
    max-width: 100px;
    margin-right: 80px;
}

button:hover {
    background: transparent;
    color: black;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid #008cba;
}

footer {
    bottom: 0;
    color: #333;
    padding: 10px;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 2px;
}

ul {
    margin-bottom: 50px;
}

ul li {
    list-style: none;
    width: 50%;
    border-radius: 10px;
    height: 25px;
    color: #333;
    margin: 25px;
    padding-right: 10px;
    margin-left: 0;
    background-color: #008cba;
    text-align: right;
}

.barTemplate {
    background-color: #EBEBEB;
    border-radius: 10px;
    width: 80vw;
}