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

html, body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #00A9E0;
}

body {
    font-family: "Prompt", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

#header {
    position: absolute;
    display: block;
    width: auto;
    height: 30%;
    left: 10%;
    top: 20%;
}

#content {
    position: absolute;
    left: 10%;
    top: 60%;
}

#content ul,
#content ul > li {
    display: block;
    margin: 0;
    padding: 0;
}

#content ul > li {
    display: inline-block;
}

#content a, input {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: #fff 1px solid;
    border-radius: 20px;
    line-height: 40px; 
    height: 40px;
    margin-right: 40px;
    padding: 0 40px;
    background: #00DD93;
    background: linear-gradient(90deg,rgba(0, 221, 147, 1) 0%, rgba(21, 119, 232, 1) 100%);
}

#content a:hover {
    background: #009966;
    background: linear-gradient(90deg,rgba(0, 153, 102, 1) 0%, rgba(17, 88, 168, 1) 100%);
}

#logout {
    position: absolute;
    right: 10%;
    bottom: 5%;
}

#logout > input {
    font-size: 16px;
    font-weight: 200;
    background: transparent url(logout.png) right 15px center no-repeat;
    background-size: 20px;
    padding-right: 50px;
}

#logout > input:hover {
    cursor: pointer;
    background-color: rgba(0,0,0,.3);
}
