body {
  background-image: url('https://wallpapercave.com/wp/wp5167426.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}


.search-bar {
    width: 700px;
    background: rgba(205, 205, 205, 0.845);
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 60px;
    padding: 3px 20px;
    left: 50%;
    transform: translateX(-50%);
    top: 305px
}

.search-bar input {
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    font-size: 20px;
    padding: 20px 20px;
}

::placeholder {
    color: grey;
}

.search-bar button {
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: rgba(225, 225, 225, 0.845);
}

.bookmarks {
    display: flex;
    width: 320px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 398px;
}

.bookmarks img {
    border: transparent solid 2px;
}
.bookmarks img:hover {
    border: #ff6ec7 solid 2px;
}

.clock {
    position: absolute;
    left: 39%;
    transform: translateX(-50%);
    font-family: "Black Ops One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    color: gray;
    text-shadow: 2px 2px 2px #000000;
    top: 165px;
    transform: scaleY(1.5);
}

.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(0, 0, 0);
    color: antiquewhite;
    border-bottom: #302f2f solid 1px;
}

.carousel {
    display: flex;
    justify-content: end;
    margin-right: 10px;
    width: 45%;
    height: 62%;
    border: #757575 2px solid;
    overflow-x: auto;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.group {
    display: flex;
    align-items: center;
    gap: 1em;
    animation: spin 12s infinite linear;
    font-family: "Doto", sans-serif;
}
@keyframes spin {
    from {translate: 100%;}
    to {translate: -130%;}
}

.name {
    margin-left: 10px;
    border: #757575 solid 2px;
    padding: 2.4px 5px;
    font-family: "Doto", sans-serif;
}

.settingsbutton {
    height: 20px;
    cursor: pointer;
    padding: 2px;
    border: #757575 2px solid;
}

.weather {
    background: rgba(0, 0, 0, 0.443);
    width: 320px;
    height: 200px;
    border-radius: 15px;
    border: #ffffff solid 1px;
    position: absolute;
    top: 70px;
    left: 1095px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.weather:hover {
    border: #ff6ec7 solid 1px;
}

.weather h1{
    font-size: 40px;
}

.weather h2 {
    font-size: 18px;
}

.weather p {
    font-size: 15px;
    margin-top: 12px;
}

.calendar-container {
    position: absolute;
    top: 370px;
    left: 1095px;
    width: 320px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: aliceblue;
    border: #ffffff solid 1px;
    border-radius: 15px;
}

.calendar-container:hover {
    border: #00f0ff solid 1px;
}

.calendar-container header {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
}

header .current-date {
    font-size: 17px;
}

header .icons span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    user-select: none;
}

header .icons span:hover {
    background-color: rgb(61, 54, 55);
}

.calendar ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
    text-align: center;
}

.calendar .days li {
    margin-top: 14px;
    cursor: pointer;
    z-index: 1;
}

.calendar ul li {
    position: relative;
    width: calc(100% / 7);
}

.days li.inactive {
    color: rgb(176, 176, 176);
}

.days li.active {
    color: aliceblue;
}

.calendar .days li::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.days li:hover::before {
    background-color: rgb(61, 54, 55); 
}

.days li.active::before {
    background: rgb(59, 76, 76);
}

.music-container {
    position: absolute;
    top: 75px;
    left: 5px;
    width: 318px;
    height: 600px;
    padding: 20px 10px;
    background-color: rgba(0, 0, 0, 0.65);
    border: #ffffff solid 1px;
    border-radius: 15px;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.music-container:hover {
    border: #df00fe solid 1px;
}

.img-area {
    height: 200px;
    width: 250px;
    margin-top: 15px;
    background: grey;
    border: #ffffff solid 2px;
}

.img-area img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.info {
    width: 150px;
    text-align: center;
}

.controls {
    border-bottom: #ffffff solid 1px;
    width: inherit;
    display: flex;
    height: 40px;
    justify-content: center;
    user-select: none;
}

.settings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: #ffffff solid 1px;
    border-radius: 15px;
    color: aliceblue;
    background-color: rgba(0, 0, 0, 0.917);
    width: 520px;
    height: 550px;
    padding: 10px;
}

#settingsClose:hover {
    width: auto;
    height: auto;
    border-radius: 50%;
    background-color: #262525;
}
