:root {
    --success: #327B32;
    --text: #F2ECFF;
    --background: #674EA7;
}

html {
	cursor: url(assets/spaceship.png), auto;
    font-family: 'Roboto';
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    background-color: var(--background);
	place-items: center;
    display: grid;
    width:100%;
    height:100%;
}

.cta-button {
    box-shadow: 0 0 0 0 var(--accent);
    outline: 4px solid;
    color: white;
    outline-color: white;
    outline-offset: 0;
    text-shadow: none;
    font-size: 1rem;
    line-height: 2.5rem;
    max-width: 260px;
    width: 100%;
    letter-spacing: 0.3rem;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
	text-shadow: #FC0 1px 0 10px;
    display: flex;
    justify-content: center;
    transition: all 550ms cubic-bezier(
        .36, .63, .5, .73
    );
}

.cta-button:hover {
    box-shadow: 0 0 0 2px #FF0000;
    outline-color: rgb(64, 255, 0);
    outline-offset: 15px;
    color: var(--accent);
}

.triggpoer-button {
    background-color: white;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    font-size: 0.8rem;
    min-height: 2.5rem;
    max-width: 10rem;
    width: 100%;
    font-weight: 600;
    transition: all 0.25s;
}

.triggper-button:hover {
    text-decoration: underline; 
}
.notification {
    position: absolute;
    bottom: 1rem;
    padding: 0px 0.5rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    background-color: var(--success);
    color: var(--text);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInAnimation ease-in-out 0.25s forwards;;
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),
                0px 6px 10px 0px rgba(0,0,0,0.14),
                0px 1px 18px 0px rgba(0,0,0,0.12);
}

.none {
    display: none;
}

.hide {
    visibility: hidden;
    animation: fadeOutAnimation ease-in-out 0.25s forwards;
}

.notification__body {
    display: flex;
	cursor: url(assets/spaceship.png), auto;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: clamp(0.8rem, 3vw, 1.2rem);
}

.notification__body__first {
    display: flex;
	cursor: url(assets/spaceship.png), auto;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
}

.notification__body__first > svg {
    height: 1.5rem;
    width: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    fill: var(--text);  
}

.notification__body > svg:nth-last-child(1) {
    margin: auto;
    min-width: 1.5rem;
    min-height: 1.5rem;
}

h1 {
  color: white;
  font-size: 60px;
}

p {
  color: white;
  font-size: 16px;
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        min-height: 2.5rem;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        min-height: 3.75rem;
        visibility: visible;
    }
}

@keyframes fadeOutAnimation {
    0% {
        opacity: 1;
        min-height: 3.75rem;
        visibility: visible;
    }
    100% {
        opacity: 0;
        min-height: 2.5rem;
        visibility: hidden;
    }
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}
