body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    background-color: #f2f2f2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    margin: 15px;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 5px;
}

header span{
    font-size: 30px;
    font-weight: bold;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.main-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #504f4f;
}

#present-oracle-votes{
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid #504f4f;
}

a {
    text-decoration: none;
    color: #616161;
}

a:hover {
    color: #9b9a9a;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    header span {
        font-size: 24px;
    }

    .main-container {
        max-width: 90%;
    }
}
