html {
    min-height: 100%;
    overflow-x: hidden;
    overscroll-behavior: none;
}

body {
    background-image: linear-gradient(rgb(11, 0, 55), black);
    color: aliceblue;
    font-family: apple-system, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-y: auto; overflow-x: hidden;
}

#aboutapp {
    margin-top: 0%;
    margin-left: 1.5%;
    width: 60%;
}

.description {
    margin-left: 5%;
    margin-top: -1%;
    line-height: 200%;
}

a:hover {
    scale: 0.75;
}

#applink {
    padding-left: 1vw;
    padding-right: 1.1vw;
    text-decoration: none;
}

#aboutheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.devices {
    display: flex;
    margin-right: -10%;
}
.device {
    width: 20%;
}

#privacy {
    display: block;
    width: 95%;
    justify-content: space-between;
    margin-left: 1.5%;
}




#header {
    margin-left: 2%;
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    width: 95%
}

#dock {
    width: 8%;
    height: 8%;
    display: grid;
    grid-template-columns: 50% 50%;
    background-color: rgba(46, 46, 46, 0.409);
    backdrop-filter: blur(10px);
    border-radius: 1.5vw;
}

.headericon {
    position: relative;
    width: 80%; 
    border-radius: 27%;
    margin: 0.33vw;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.564);
    transition: padding 3000ms, background-color 300ms, scale 300ms, margin 300ms; 
}

.headericon:hover {
    scale: 1.2;
}


.linkborder {
    padding: 0.8vw;
    border-style:groove;
    border-radius: 1vw;
    scale:0.85;
    color: rgb(255, 43, 85);
    border-color: rgb(255, 43, 85);
}

a {
    text-decoration: none;
    transition: scale 300ms;
}







#main {
    justify-content: left;
    display: flex;
    align-items: left;
}

.bigimage {
    width: 96%;
}

@media (max-width: 850px) { 
    #main {
        display: block
    }
    .devices {
        scale: 0.8;
        margin-left: -10%;
    }
    .bigimage {
        scale: 0.8;
        margin-left: -10%;
    }
    #aboutapp {
        width: 80%;
    }
}