@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

* {
    box-sizing: border-box;
  }
body {
    font-family: "Ubuntu", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text__friend {
    animation: rotate 3s;
}

.status-bar {
    display: flex;
    padding: 5px;
    background-color: lavender;
    font-size: 13px;
    justify-content: space-between;
    width: 100%; 
    position: fixed; 
    top: 0px;
    z-index: 99;
}

.status-bar__column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
}

.status-bar__column > * {
    margin: 0px 5px;
}

.status-bar__wifi {
    justify-content: flex-start;
}

.status-bar__battery {
    justify-content: flex-end;
}

#menu {
    background-color: lavender;
    display: flex;
    width: 100%;
    justify-content: space-around;
    position: fixed;
    bottom: -5px;
    padding: 30px;
    z-index: 99;
}

#menu > * {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: x-large;
}

#menu > *:hover:not(#menu>div) {
    cursor: pointer;
    color: rgb(119, 29, 255);
}

#menu>div {
    cursor: default;
    font-size: medium;
}

.header > div > i:hover, .header > div > a:hover {
    cursor: pointer;
    color: rgb(91, 91, 187);
}

#content {
    overflow: scroll;
    height: 800px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 15px;
}

.header > h1 {
    font-size: xx-large;
    font-weight: 500;
    animation: rotate 3s;
}

.header>div>* {
    margin: 0px 10px;
    font-size: large;
}