.valentine {
    text-align: center;
    background: #ffdde1;
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.valentine__title {
    color: #ff3366;
    font-size: 28px;
}

.valentine__message {
    font-size: 18px;
    color: #333;
}

.valentine__button {
    background-color: #ff3366;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.valentine__button:hover {
    background-color: #cc0044;
}

.valentine__hidden-message {
    display: none;
    font-size: 20px;
    color: #ff3366;
    margin-top: 20px;
    font-weight: bold;
}

/* body {
    margin: 0;
    padding: 0;
  } */
  nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px 100px;
    box-sizing: border-box;
    transition: .3s;
    text-align: center;
    background: rgba(0,0,0,0.8);

  }
  nav .logo {
    padding: 30px 20px;
    height: 80px;
    float: left;
    font-size: 30px;
    transition: .3s;
    color: #fff;
  }
  nav ul{
    list-style: none;
    float:right;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 30px;
  }
  nav ul li {
    list-style: none;
  }

  nav ul li a {
    line-height: 80px;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
    color: #fff;
  }

  nav ul li a:focus{
    outline: none;
  }

  nav.black {
    background: rgba(0,0,0,0.8);
    height: 100px;
    padding: 10px 100px;
  }
  nav.black .logo {
    color: #fff;
  }
  nav.black ul li a{
    color: #fff;
  }
  nav ul li a.active{
    background: #E247;
    color: #fff;
    border-radius: 6px;
  }

  .vabout {
    margin-bottom: 200px;
  }
  
  .vabout__title {
    font-size: 60px;
    position: relative;
    text-align: left;
    color: #ff3366;
    line-height: 1;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin-bottom: 60px;
  }
  
  .vabout__title::after {
    position: absolute;
    content: "";
    border-radius: 10px;
    width: 60%;
    height: 1px;
    bottom: -13px;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .vinfo-block {
    display: flex;
    justify-content: space-between;
  }
  
  .vinfo-block__text {
    width: 70%;
    font-size: 23px;
    line-height: 34.5px;
  }
  
  .vinfo-block__img {
    align-self: center;
  }

