@import url('https://fonts.googleapis.com/css2?family=Rampart+One&display=swap');

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body,
div,
html {
    margin: 0;
    padding: 0
}

body,
html {
    width: 100%;
    height: 100%
}

body {
    position: relative;
    font-family: -apple-system, Roboto, Helvetica Neue, Trebuchet MS, sans-serif;
    font-size: 100%;
    background-color: #add0ee;
    backdrop-filter: blur(5px);
}

.header{
    position: fixed;
    top:0;
    width: inherit;
    height: 9vh;
    background: rgb(247 247 247);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;;
}

.footer{
    position: fixed;
    bottom:0;
    width: inherit;
    height: 5vh;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.section{
    margin: 10px 10px 10px 50px;
}

a{
    text-decoration: none;
    color: #7395ef;
}

.logo{
    width: 40%;
    margin-left: 20px;
}

.header-logo{
    font-family:'Rampart One', cursive;
    color: #7395ef;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    margin-left: 10px;
    width: 11vw;
}

.center-body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: inherit;
    height: inherit;
    flex-direction: column;
}

.chrome-ex{
    margin-right: 10px;
    cursor: pointer;
}

.header-left{
    display: flex;
    flex-direction: row;
}

.chrome-ex-con{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15vw;
}

.center-text{
    font-size: 1.5em;
    font-family:'Rampart One', cursive;
}

.screen-img {
    border-radius: 10px;
    box-shadow: inset -1px 3px 8px 5px #42464b, 2px 5px 16px 0 #2f2f31, 5px 5px 15px 5px transparent;
    height: auto;
    width: 40%;
}

.center-chrome {
    margin-top: 3vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 85%;
}

.center-body-con {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20vh;
    width: 31vw;
    margin-left: 5vw;
}

.powered{
    margin-top: 20px;
}

.screen-img-div{
    width: 53vw;
}

button{
    padding: 10px;
    border-radius: 11px;
    font-size: 1em;
    font-weight: 800;
    background: linear-gradient(0deg, rgba(129,176,255,1) 0%, rgba(0,98,252,1) 100%);
    border: #7395ef;
    color: white;
    width: 20vw;
    cursor: pointer;
}

button:hover{
    background: linear-gradient(0deg, rgba(0,98,252,1) 0%, rgba(129,176,255,1) 100%);
    color: white;
}

.container{
    display: flex;
    width: inherit;
    justify-content: center;
    align-items: center;
}