* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    text-decoration: underline;
}

.heading {
    text-align: center;
    padding: 1%;
}

hr {
    width: 50%;
    margin: 0 auto;
}

.bodyText {
    margin: 0px 10% 0px 10%;
    padding: 20px;
}

.fireworks {
    height: 30vh;
    margin: auto;
    display: block;
    outline: solid #ff004f;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.fireworks:hover{
    transform: scale(1.1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
}

.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    color: white;
    transition: background 0.5s;
    text-decoration: none;
}

.btn:hover{
    background: #ff004f;
}