:root {
    --bg-color: #28104e;
    --primary-color: #6237a0;
    --secondary-color: #9754cb;
    --text-color: #deacf5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-family: sans-serif;
}
.container {
    max-width: 140rem;
    padding: 2rem;
    margin: 0 auto;
}
.btn {
    border: none;
    text-decoration: none;
    padding: 1rem 2rem;
    display: block;
    color: inherit;
}

.notif {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
    box-shadow: 0 0 0 1px #fff, 0 0 2rem 1px rgba(255, 255, 255, 0.5);
}
.btn,
.notif-link:link,
.notif-link:visited {
    display: block;
    font-size: 1.6rem;
    text-decoration: none;
    padding: 1rem 2rem;
    background-color: var(--bg-color);
    color: var(--text-color);
}
.sweetButton {
    padding: 1rem 2rem;
    font-size: 1.4rem !important;
}
.sweetText {
    font-size: 1.6rem;
}
