/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
   background-image: url("backgrounds/20231114_214228.jpg");
    text-align:center;
    font-family: "Brush Script MT", cursive;
    color: black;
}
p {
  color: #FFFF66;
  font-family: "Brush Script MT", cursive;
  margin:0;
  margin-top: 5px;
  text-align: center;
}
.note {
        background: #311fff;
        border: 1px solid #FFFF66;
        padding: 15px;
        width: 60%;
        margin: auto;
}

a {
  color: hotpink;
}

h1{
  font-family: "Brush Script MT", cursive;
  font-size:28px;
  letter-spacing: 2px;
  display:inline-block;
  border-radius: 20px;
  padding: 5px 5px;
    }
    main{
    width:700px;
    height: 900px;
    position:relative;
    margin: auto;
    box-sizing:border-box;

    }
    .content{
    width:100%;
    height:100%;
    margin:auto;
    background-color: rgba(214, 243, 255, 0.95);
    border: 7px double #73D6FF;
    }
    a:hover{
    font-style: italic;
    color: white;
    }