body {
    background-color: deepskyblue;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 40px;
}


h1 {
    font-size: 35px;
    font-style: italic;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
}


ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 12px;
}

a {
    text-decoration: none;
    color: #222;
    font-weight: 400;
}

a:hover {
    color: white;
    font-size: 18px;
    text-decoration: underline;
}

.image-container {
    display: flex;
    justify-content: center;
    margin-top: -120px;
}

img.main-img {
    display: block;
    width: 110%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 50px;
    
}

.corner-text {
    position: fixed;
    bottom: 30px;
    right: 40px;
    font-size: 200px;
    font-weight: normal;
    font-family: cursive;
    color: rgb(255, 255, 255);
    line-height: 1.1;
    text-align: right;
    margin: 0;
    margin-bottom: 20px;
}


.corner-text:hover {
    font-size: 220px;
    color: rgb(110, 70, 255);
    transition: all 0.3s ease;
}

.letter {
    opacity: 0;
    
    animation: fadeIn 0.05s forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }