body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    background-image: url('assets/images/DSC00666.jpg');
    background-size: cover;
    background-position: center 28%;
    background-repeat: no-repeat;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

@media (min-width: 1024px) {
    body {
        justify-content: flex-start;
        padding-top: -100px;
    }
    
    h1, button {
        margin-top: 400px;
    }
}

h1 {
    margin-bottom: 20px;
}

button {
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    background-color: rgba(255, 122, 149, 0.8);
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background-color: rgba(255, 33, 96, 0.9);
}
