

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
}

/*body {
    overflow: hidden;
}*/
.container {
    width: 100%;
    min-height: 100vh;
    background-color: #4a2040;
}

nav {
    display:flex;
    width: 100%;
    justify-content: space-around;
    height: 80px;
    line-height: 35px;
    z-index: 111;
    background-color: #4a2040;
    box-shadow: 0 10px 10px rgba(0,0,0,0.4);
    border-radius: 5px;  
}

.logo {
    display: flex;
    font-size: 60px;
    font-weight: 800;
    color: #f5cce8;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;

}

.navItems {
    display: flex;

}
.navItems li{
    list-style: none;
    margin: 0 15px;
}
.navItems li a{
    font-size: 25px;
    color: #f5cce8;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: capitalize;
}
.navItems li:hover a {
    color:  #c880b7;
}

ion-icon {
    height: 50px;
    width: 40px;
    fill: #f5cce8;

}
ion-icon:hover {
    height: 50px;
    width: 30px;
    fill: #c880b7;
}
.links a{
    font-size: 30px;
    color: #f5cce8;
    margin: 25px 10px;

}

.wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.cols {
    width: 50%;
}
.topline {
    display: block;
    position: relative;
    font-size: 35px;
    letter-spacing: 5px;
    color: #f5cce8;
}
.topline::after {
    position: absolute;
    content: '';
    height: 4px;
    width: 45px;
    bottom: 10px;
    background-color: #9f6ba0;
}

h1 {
    display: block;
    font-size: 7em;
    font-weight: 900;
    color: #f5cce8;
}

.multiText {
    color: #9f6ba0;
    text-transform: capitalize;
}

p {
    display: block;
    width: 90%;
    font-size: 1.2em;
    color: #f5cce8;
}

.btns {
    width: 100%;
    position: relative;
    left: 150px;
}

button {
    outline: none;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 25px;
    font-weight: 400;
    color: #9f6ba0;
    background-color: #f5cce8;
    padding: 8px 14px;
    margin: 40px 5px;
    letter-spacing: 2px;
    text-transform: capitalize;
    box-shadow: 0 15px 10px rgba(0,0,0,0.4);
}

button:hover {
    background-color: #9f6ba0;
    color: #f5cce8;
}

.Devtag {
    display: flex;
    border: none;
    border-radius: 5px;
    color: #4a2040;
    background-color: #c880b7;
    width: fit-content;
}

.imgbox {
    position: relative;
    width: 100%;
    height: 100%;
}
.imgbox img {
    position: relative;
    height: 100%;
    width: calc(130% - 80px);
    top: -100px;
    right: 50px;
    transform: rotateY(180deg);
    animation: animateUser 4s linear infinite;
}

@keyframes animateUser{
    50% {
        right: 30px;
        top: -90px;
    }
}

/*
.imgbox #splash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-35deg);
    width: 160%;
    filter: saturate(200%);
    animation: animate 4s linear infinite;
}

@keyframes animate {
    50% {
        top: 49%;
        left: 51%;
        width: 155%;
    }
}
*/

h2 {
    font-size: 20px;
    text-transform: capitalize;
    display: block;
    font-weight: 700;
    color: #f5cce8;
}
