* {
    margin: 0;
    padding: 0;
}
.bg-none {
    background-color: transparent !important;
}
.hide {
    display: none !important;
}
.resize {
    resize: none;
}
.pointer {
    cursor: pointer;
}
.btn-danger {
    background-color: rgba(220, 53, 69, 0.9) !important;
    color: aliceblue !important;
    border: none !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: #dc3545 !important;
    color: aliceblue !important;
    outline: none !important;
}

body {
    background-color: #dadbdc;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    width: 150px;
}

section {
    background-color: aliceblue;
    width: 80%;
    border-radius: 10px;
}
@media (max-width: 900px) {
    section {
        width: 100%;
        border-radius: 0;
    }
}
