* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;

    color: white;
}

body {
    background-image: url('webground.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 80px;
}

#intro-block {
    margin: 20px;
    padding: 20px;
}

#sup-bois {
    font-family: "Playfair Display SC", serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
    font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#intro {
    /* margin: 20px; */
    font-size: 50px;
}

#refer {
    font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
}

#first-para {
    font-size: 30px;
    margin-top: 50px;
    /* margin-left: 20px; */
    backdrop-filter: blur(10px);
    border: 1px solid white;
    border-color: white;
    padding: 20px;
    border-radius: 1rem;
    /* box-shadow: 0 0 0 0.5px white; */

}

#para-intro {
    font-family: "Playwrite GB J", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#personal {
    font-family: "Playwrite GB J", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
}

#have {
    font-family: "Playwrite GB J", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
}

#blah-blah {
    font-family: "Playwrite GB J", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  text-decoration: underline;
}

footer {
    margin-top: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    backdrop-filter: blur(1000px);
    border-top-left-radius: 1rem;
    border-top-right-radius: 0.7rem;
    font-size: 25px;

    border-top: 1px solid white;
}

#links {
    margin: 20px;
    display: flex;
    justify-content: space-around;
}

.a-link {
    font-style: italic;
}

@media (max-width: 480px) {
    #intro-block {
        padding: 10px; 
        margin: 10px;
    }

    #intro {
        font-size: 28px; 
    }

    #first-para {
        font-size: 20px; 
        backdrop-filter: blur(10px);
        border: 1px solid white;
        border-color: white;
        padding: 12px;
        border-radius: 1rem;
        box-shadow: 0 0 0 0.5px white; 

    }

    footer { 
        font-size: 14px; 
        border-top: 1px solid white;
        /* background-color: rgb(15, 68, 90); */
    }
} 

