*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-size: 16px;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    height: fit-content;
    background-color: #1E293B;
    color: #D3E6FE;
}

a{
    text-decoration: inherit;
    color: inherit;
    /* all: unset; */
}

.section{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    min-height: 56.25rem;
    width: 100%;
}

.narrow-invalid{
    opacity: 0.3
}


.section-one{
    /* justify-content: center; */
    position: relative;
}


.navigation{
    width: 100%;
    height: 12%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid black; */
    background-color: #2B374B;
    padding: 0 3rem;
    border-bottom: 1px solid #CBD5E1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.navigation img{
    height: 80%;
    border-radius: 25%;

}

.navigation-section{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5rem;
}


.simple-introduction{
    width: 80%;
    height: 70%;
    background: #2563EB;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2563EB, #598EF3);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2563EB, #598EF3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-radius: 2rem;
    position: absolute;
    bottom: calc(88% / 2);
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.simple-introduction > span{
    font-size: 4rem;
    font-weight: bold;
    color: #D3E6FE;
    -webkit-text-stroke: 1px black;
    padding-left: 3rem;
    text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.2);
}

.simple-introduction > div{
    display: flex;
    justify-content: end;
    padding-right: 3rem;
}

.simple-introduction  button{
    background-color: #1E293B;
    color: #598EF3;
    border: none;
    border-radius: 2rem;
    width: fit-content;
    height: 6rem;
    font-size: 4rem;
    padding: 0 2rem;
    box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.2s ease;
}


.section-two{
    display: block;
}

.multiple-websites{
    display: flex;
    width: fit-content;
    height: 100%;
    /* border: 1px solid red; */
}

.page-container{
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.website-container{
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    width: 80%;
    height: 90%;
    /* border: 1px solid black; */
    overflow: hidden;
    position: relative;
}

.website-container-cards{
    width: 100%;
    flex: 0 0 85%;
    background-color: white;
    border-radius: 2rem;
    /* position: relative; */
    display: flex;
    transition: transform 0.2s ease-in-out;
}

.website-container-cards-card{
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
}


.website-container-left-arrow{
    width: 5.5rem;
    height: 5.5rem;
    position: absolute;
    top: calc(85% / 2);
    left: 0;
    transform: translateY(-50%);
}

.website-container-right-arrow{
    width: 5.5rem;
    height: 5.5rem;
    position: absolute;
    top: calc(85% / 2);
    right: 0;
    transform: translateY(-50%);
}

.website-container-name{
    font-size: 4rem;
    font-weight: bold;
    color: #D3E6FE;
}


.section-three{
    background-color: white;
}