@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

body, header, main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    font-family: "Nunito", sans-serif;
    color: white;
    background: linear-gradient(to right, #ffe09c, #ffcd70);
    margin: 0;
    height: 100vh;
    justify-content: center;
    gap: 30px;

    figure {
        overflow: hidden;
        margin-bottom: 10;
    
         img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(0.5);
            
         }
    }

    h1 {
        margin: 0;
        font-size: 35px;
    }

    h2 {
        font-size: 20px;
        margin: 0 0 20px 0;
        font-weight: 500;
    }

    main {
        gap: 20px;

        button {
            font-family: "Nunito", sans-serif;
            font-weight: 500;
            font-size: 25px;
            width: 20rem;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.479);
            border-style: solid;
            border-color: rgba(122, 122, 122, 0.527);
            border-radius: 10px;

            &:hover {
                cursor: pointer;
                background-color: rgb(136, 136, 136);

            }
        }
    }
}

 