@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

body {
    margin: 0;

    width: 100vw;
    height: 100vh;
}

.wrapper {
    width: 300px;
    padding: 30px 20px;
    position: absolute;
    bottom: 20px;
    right: 0;
    overflow: hidden;
}

h1 {
    font-family: 'Black Han Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 80px;
    margin: 10px;
}

h2 {
    font-family: 'Black Han Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 36px;
    margin: 0px;
}

a {
    text-decoration: none;
}

p {
    font-family: 'Black Han Sans', sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 14px;
    color: #b75fda;
}

.header {
    position: relative;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url(./background.jpg) no-repeat center center;
    opacity: 0.86;
    color: white;
}

.inner-header {
    height: 90vh;
    width: 100%;
}

.flex {
    /* Flexbox for containers */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
    position: relative;
    height: 10vh;
    text-align: center;
    background-color: rgb(34, 34, 34);
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 20px;
    }
}

/* Notification */
.container {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.rectangle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    width: 50px;
    height: 50px;
    background: #380848;
    transform: scale(0);
    border-radius: 50%;
    color: white;
    opacity: 0;
    overflow: hidden;
    animation:
        scale-in .3s ease-out forwards,
        expand .35s .25s ease-out forwards;
}

.notification-text {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    animation: fade-in .65s ease-in forwards;
}

@keyframes scale-in {
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes expand {
    50% {
        width: 350px;
        border-radius: 6px;
    }

    100% {
        width: 300px;
        border-radius: 4px;
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2),
            0px 1px 1px 0px rgba(0, 0, 0, .14),
            0px 3px 3px -1px rgba(0, 0, 0, .12);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .8;
    }
}

@keyframes fade-out {
    0% {
        opacity: .8;
    }

    100% {
        opacity: 0;
    }
}