:root {
    --mainBlue: rgb(13, 181, 211);
    --darkBlue: rgb(10, 104, 121);
}
body{
    margin: 0;
    padding: 0;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    scroll-behavior: smooth;
}
h1{
    color: rgb(2, 0, 105);
    font-size: 40px;
    text-align: center;
    margin: 10px;
    font-weight: 400;
}

.show{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px;
}
.attributes1{
    display: block;
    position: fixed;
    top: 15%;left: 3%;
}
.attributes2{
    display: block;
    position: fixed;
    top: 15%;left: 30%;
}

.display{
    border-radius: 10px;
    justify-content: space-between;
    margin-right: 20px;
    cursor: pointer;
}
.display:hover{
    box-shadow: 0 1px 10px rgba(139, 181, 221, 0.39);
}
.display2{
    border-radius: 10px;
    justify-content: space-between;
    margin-right: 20px;
    box-shadow: 0 1px 10px rgba(139, 181, 221, 0.781);
}

.item{
    padding: 5px;
    text-align: right;
}
.item a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: var(--mainBlue);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-left: 5px;
    padding: 10px;
}
.item a:hover{
    color: rgb(255, 255, 248);
    background-color: var(--darkBlue)
}
i{
    padding: 10px;
    color: rgb(197, 228, 255);
    background-color: var(--mainBlue);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    transition: 1s;
    transition-delay: 1s;
}
i:active{
    background-color: var(--darkBlue);
    color: aqua;
    transition: 0s;
}

#screen{
    position: fixed;
    top: 15%;right: 5%;
    width: 400px;
    height: 400px;
    border: 5px solid rgb(0, 103, 172);
    border-radius: 40px;
    background-color: rgba(208, 244, 255, 0.678);
}
#screen p{
    width: 20px;
    height: 20px;
    padding: 20px;
    margin: 5px;
    border-radius: 50%;
    background-color: var(--mainBlue);
}
#screen i{
    width: 20px;
    height: 20px;
    padding: 20px;
    margin: 5px;
    border-radius: 50%;
    background-color: var(--mainBlue);
}

.display{
    justify-content: space-evenly;
}