body{
    background-color: rgb(33, 33, 33);
}
.defultText {
    color: rgb(5,5, 5);
    text-align: center;
    -webkit-text-stroke: 0.1em rgb(248, 248, 248);
    paint-order: stroke fill;
}
.container {
  display: flex;

  justify-content: center;
  align-items: center;
}
.download {
    color: rgb(100, 100, 248);
    text-align: center;
    -webkit-text-stroke: 0.1em rgb(248, 248, 248);
    paint-order: stroke fill;
    text-decoration: none;
    font-size: 25px;
    display: inline-block;
    transition: transform 0.2s ease;
}
.download:hover {
    transform: scale(1.2);
}