*{
    margin: 0;
    padding: 0;
}

body{
    box-sizing: border-box;
    background-color: rgba(0, 12, 27, 1);
    font-family: Arial, Helvetica, sans-serif;
}

.bars{
    max-width: 100%;
    width: 100%;
}

.note{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:  rgb(11, 33, 59);
    border-radius: 10px;
    padding: 0.5em;
}

@media (max-width: 1024px) {
    .note{
        max-width: 100%;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .note{
        max-width: 100%;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .note{
        max-width: 100%;
        width: 80%;
    }
}

h1{
    text-align: center;
    max-width: 100%;
    width: 90%;
}

@media (max-width: 480px) {
    h1{
        margin-left: -2rem;
    }
}

p{
    color: rgb(255, 123, 0);
    font-size: 24px;
}

@media (max-width: 600px) {
    p{
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    p{
        font-size: 14px;
    }
}