* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    /* background-image: url(./assets/background-img.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Poppins", "sans-serif";
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.spacing {
    padding: 1rem 10rem;
}

header {
    background-color: rgb(255, 94, 1);
    box-shadow: 0px 0px 15px #00000063;
}

header > .spacing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    transform: scale(0.7);
}

header nav ul {
    display: flex;
    gap: 4rem;
    list-style: none;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    border-radius: 999px;
    background-color: #fff;
    transition: all .5s ease-in-out;
}

header nav ul li a:hover::after {
    width: 100%;
}

main {
    height: 100%;
}

main .spacing {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.content .button {
    width: fit-content;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 7px;
    background-color: rgb(255, 94, 1);
    transition: all .2s ease-in-out;
}

.content i {
    animation: move 2s ease-in-out infinite;
    position: absolute;
    bottom: -55px;
    left: -45px;
    color: #000;
    font-size: 42px;
    transform: rotate(50deg);
}

@keyframes move {
    0% {
        bottom: -50px;
        left: -35px;
    }
    50% {
        bottom: -40px;
        left: -25px;
    }
    100% {
        bottom: -50px;
        left: -35px;
    }
}

.content .button:hover {
    transform: scale(1.05);
    color: #fff;
    background-color: rgb(255, 94, 1);
}

picture i {
    font-size: 200px;
}
