* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 15px 120px;

    & nav {
        display: flex;
        gap: 25px;

        & a {
            color: #141A26;
            position: relative;
        }

        & a::after {
            content: "";
            width: 0%;
            height: 2px;
            background-color: #141A26;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: .3s ease-in;
        }

        & a:hover::after {
            width: 100%;
        }
    }
}

main {

    & section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 0;
    }

    & #home {
        background-color: #0D0D0D;
        color: #fff;
        height: calc(100vh - 53px);

        & .container {
            max-width: 825px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;

            & a {
                background-color: #141A26;
                border: 1px solid #fff;
                border-radius: 5px;
                color: #fff;
                font-weight: bold;
                padding: 10.5px 30px;
            }
        }
    }

    & #galeria {
        background-color: #F8F9FA;

        & .container {
            max-width: 1098px;
            margin: auto;

            & .photos {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;

                & img {
                    border-radius: 8px;
                }
            }

            & h2 {
                text-align: center;
                margin-bottom: 40px;
            }
        }

    }
}