body {
    font-family: system-ui;
    display: flex;
    flex-direction: column;
    background-color: black;
}

.header {
    width: 1024px;
    height: 70px;
    background-color: rgba(128, 128, 128, 0.7);
    border-radius: 10px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.headertxt{
    color: white;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 35px;
}

.hd1 {
    margin-left: 5px;
}

.buttons{
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px;
}

.buttons button {
    height: 40px;
    width: 120px;
    font-size: 20px;
    background-color: rgba(128, 128, 128, 0.7);
    color: white;
    border: none;
    border-radius: 10px;
    margin-left: 10px;
}

button:hover {
    border-style: solid;
    cursor: pointer;
}

.content {
    width: 1024px;
    height: 70vh;
    background-color: rgba(128, 128, 128, 0.7);
    border-radius: 10px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
}

.content .txt {
    color: white;
    margin-left: 5px;
    font-size: 25px;
}

.content .txt2 {
    color: white;
    margin-left: 5px;
    font-size: 20px;
    margin-top: 10px;
}

.footer {
    width: 1024px;
    height: 70px;
    background-color: rgba(128, 128, 128, 0.7);
    border-radius: 10px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    display: flex;
}

.fttxt {
    color: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 40px;
    font-weight: bold;
}

button {
    height: 40px;
    width: 120px;
    font-size: 20px;
    background-color: rgba(128, 128, 128, 0.7);
    color: white;
    border: none;
    border-radius: 10px;
    margin-left: 5px;
    margin-top: 5px
}