@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&family=Mulish:wght@200;300;400;500&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Mulish Montserrat', sans-serif;
    margin: 30px 20px;
    overflow-X: hidden;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0; 
}

header span {
    font-family: 'Montserrat';
    font-size: 0.8em;
    font-weight: lighter;
}

header i img {
    max-width: 10rem;
}

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: -1;
    overflow: hidden;
}

.background span {
    width: 13vmin;
    height: 13vmin;
    border-radius: 13vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move;
    animation-duration: 45;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.background span:nth-child(0) {
    color: #d095b3;
    top: 74%;
    left: 83%;
    animation-duration: 47s;
    animation-delay: -34s;
    transform-origin: 7vw -11vh;
    box-shadow: -26vmin 0 3.996653003138216vmin currentColor;
}
.background span:nth-child(1) {
    color: #d095b3;
    top: 98%;
    left: 33%;
    animation-duration: 33s;
    animation-delay: -41s;
    transform-origin: 20vw 24vh;
    box-shadow: 26vmin 0 3.9449137005221155vmin currentColor;
}
.background span:nth-child(2) {
    color: #7c625e;
    top: 6%;
    left: 49%;
    animation-duration: 41s;
    animation-delay: -11s;
    transform-origin: 11vw -16vh;
    box-shadow: -26vmin 0 3.361322226636024vmin currentColor;
}
.background span:nth-child(3) {
    color: #d095b3;
    top: 46%;
    left: 11%;
    animation-duration: 53s;
    animation-delay: -37s;
    transform-origin: 12vw 11vh;
    box-shadow: -26vmin 0 4.201084732727541vmin currentColor;
}
.background span:nth-child(4) {
    color: #d095b3;
    top: 98%;
    left: 25%;
    animation-duration: 41s;
    animation-delay: -2s;
    transform-origin: -16vw 16vh;
    box-shadow: -26vmin 0 3.9006375395675934vmin currentColor;
}
.background span:nth-child(5) {
    color: #d095b3;
    top: 17%;
    left: 64%;
    animation-duration: 33s;
    animation-delay: -1s;
    transform-origin: 9vw 20vh;
    box-shadow: -26vmin 0 3.6943830513260023vmin currentColor;
}
.background span:nth-child(6) {
    color: #7c625e;
    top: 68%;
    left: 62%;
    animation-duration: 46s;
    animation-delay: -15s;
    transform-origin: -21vw 10vh;
    box-shadow: 26vmin 0 3.782115003071648vmin currentColor;
}
.background span:nth-child(7) {
    color: #e28b69;
    top: 59%;
    left: 53%;
    animation-duration: 47s;
    animation-delay: -27s;
    transform-origin: 12vw -3vh;
    box-shadow: 26vmin 0 3.944195675869752vmin currentColor;
}
.background span:nth-child(8) {
    color: #d095b3;
    top: 85%;
    left: 77%;
    animation-duration: 35s;
    animation-delay: -8s;
    transform-origin: -19vw 24vh;
    box-shadow: 26vmin 0 4.2312448173636215vmin currentColor;
}
.background span:nth-child(9) {
    color: #7c625e;
    top: 96%;
    left: 98%;
    animation-duration: 53s;
    animation-delay: -3s;
    transform-origin: 11vw -3vh;
    box-shadow: -26vmin 0 3.4737735842193174vmin currentColor;
}
.background span:nth-child(10) {
    color: #e28b69;
    top: 18%;
    left: 43%;
    animation-duration: 29s;
    animation-delay: -3s;
    transform-origin: -23vw -18vh;
    box-shadow: 26vmin 0 3.880628172519396vmin currentColor;
}
.background span:nth-child(11) {
    color: #7c625e;
    top: 100%;
    left: 26%;
    animation-duration: 45s;
    animation-delay: -17s;
    transform-origin: 3vw -2vh;
    box-shadow: -26vmin 0 3.8118961407469634vmin currentColor;
}

[data-text]::after {
    content: attr(data-text);
  }

.intro {
    margin-bottom: 20px;
}

h2 {
    font-family: 'Mulish';
    margin-bottom: 7px;
}

main {
    margin-top: 40px;
    margin-bottom: 20px;
}
main p {
    font-family: 'Montserrat';
    font-size: 400;
    font-weight: light;
    line-height: 1.5;
}

section h3 {
    font-family: 'Mulish';
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}


.packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.packages .pack {
    border: 1px solid #7c625e34;
    border-radius: 8px;
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
    transition: 0.3s ease-in;
}

.packages .pack:hover {
    outline: 0;
    box-shadow: 5px 5px 15px 5px rgba(95, 72, 72, 0.288);
}


.packages .pack:last-child {
    border: none;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.packages .pack h4 {
    font-family: 'Mulish';
    margin: 15px;
    color: rgba(0, 0, 0, 0.733);
}

.packages .pack p {
    margin-bottom: 20px;
    font-family: 'Montserrat';
    font-size: small;
    font-weight: lighter;
    line-height: 1.5;
}

.packages .pack button {
    font-family: 'Montserrat';
    border: none;
    border-radius: 3px;
    background-color: #7c625e;
    width: 70px;
    height: 30px;
    color: #ebe1e0;
    text-transform: uppercase;
    
}

.addition {
    background-color: #7c625ed2;
    color: #fff;
    margin: 30px 0px;
    padding: 30px 20px;
    text-align: center;
    line-height: 1.7;
    font-family: 'Mulish';
}

.conclusion .addition span {
    font-size: large;
    font-weight: 600;
}

.conclusion .more{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px ;
}

.conclusion .more h3, .how-to h3{
    font-family: 'Mulish';
    margin-bottom: 20px;
}

.conclusion .more ul li {
    font-family: 'Montserrat';
    list-style: square;
    padding-top: 20px;
    font-weight: lighter;
}

.conclusion .more ul li strong {
    font-style: italic;
    font-size: small;
}

.how-to h3 {
    font-family: 'Mulish';
}

.more p {
    padding: 20px 0;
    display: block;
    font-family: 'Mulish';
    font-size: 1.2rem;
    font-weight: 600;
}

.how-to p{
    font-family: 'Montserrat';
    line-height: 1.5;
}

.how-to p span {
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* .addition p {

} */

@media (max-width: 580px) {
    .packages {
        display: block;
    }
}