* {
    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;
}

img {
    height: 400px;
    margin: auto;
    display: block;
    outline: solid #ff004f;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

img: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;
}

nav a{
    text-decoration: none;
    color: white;
}

nav ul li {
    margin: 10px 20px;
}

/* changing the font colour and size of the navbar links*/
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

/* adding decorative elements under the navbar links*/
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

.title {
    text-decoration: underline;
}

@media only screen and (max-width: 650px) {
    img {
        height: 200px;
        margin: auto;
        display: block;
        outline: solid #ff004f;
        border-radius: 10px;
        transition: transform 0.5s ease;
    }

}