*{
    margin: 0px;
    padding: 0px;
}

.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100px;
    height: 100px;
    transition: 0.5s all;
}

.logo:hover {
    transform: rotate(180deg);
    transition: 0.5s all;
}

.row {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Align items horizontally in the center */
  }

  .buttons {
    display: flex;
    gap: 10px; /* Adjust the spacing between buttons as needed */
  }



.header {
    height: 10px;
    background-color: #0084AD;
    margin-top: 0px;
    margin-bottom: 0px;
}

.title {
    color: #0084AD;
    font-weight: 900;
    font-size: 2em;
    text-align: center;
}

.dialog {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0px 0px 5px 0px rgba(114, 177, 200,0.3);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(114, 177, 200,0.3);
    -moz-box-shadow: 0px 0px 5px 0px rgba(114, 177, 200,0.3);
    border-radius: 5px;
}

.dialog-title,
.dialog-description {
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer {
    min-height: 100px;
    margin: 0px;
    position: fixed;
    bottom: 0px;
    background-color: #0084AD;
    color: #fff;
}

.footer > small {
    font-weight: 900;
}
