@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

    h1 {
        color: rgb(89, 7, 243);

    }
}

img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(2, 2, 0, .3);
}

.img-container {
    max-height: 75%;
}

.btn_container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    align-items: center;
}

.button {
    background-color: #d36aa7;
    border: none;
    outline: none;
    width: 50%;
    transition: .3s;
    padding: .5rem 2rem;
    border-radius: 25px;
    color: #f7f2f4;
}

.button:hover {
    transform: scale(1.3);
}

body {
    background-color: goldenrod;
    \

}