.cont{
    position: absolute;
    left: 470px;
    top: 350px;
    bottom: 500px;
}

body{
    background-image: url(create.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

h1{
    color: orange;
}

h3{
    color: white;
}

p{
    color: white;
}


button {
    background-color: #baad35; 
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease, border-radius 0.3s ease;
    bottom: 500%;
    width: 300px;
    height: 50px;
  }
  
button:hover {
    opacity: 0.7; 
    border-radius: 20px; /
  }

  