
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    width: 100%;
    height: 100%;
}

.hero{
    width: 100vw;
    height: 100vh;
    background-image: url("https://static.vecteezy.com/system/resources/thumbnails/041/391/260/small/ai-generated-elegant-peacock-feathers-on-dark-blue-background-photo.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}
.hero button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 16px 36px;
    font-size: 30px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}
