
/* Universal */
* {
    margin: 0;
    padding: 0;
    user-select: none;
}

/* Main screen */
.main-screen {
    background: url("https://i.pinimg.com/1200x/46/25/44/462544d6deed3b390175260e7209f518.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 92vh;
    padding-top: 10px;
    padding-left: 10px;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    margin-bottom: 10px;
    flex-direction: column;
}

.icon-box img {
    width: 48px;
    height: 48px;
    display: block;
}

.icon-box p {
    color: white;
    font-size: 12px;
    text-shadow: 1px 1px 3px black;
}

.icon-box:hover {
    background: rgba(255, 255, 255, 0.307);
    border-radius: 2px;
}

/* Footer Screen */
.footer-screen {
    background: rgba(255,255,255,0.7);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-mini-box {
    margin-left: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.2s;
}

.icon-mini-box:hover {
    background: rgba(203, 203, 203, 0.674);
}

.icon-mini-box img{
    width: 35px;
    height: 35px;
}

/* Search Bar */
.searchbar {
    background: rgb(233, 229, 229);
    width: 280px;
    height: 35px;
    display: flex;
    border-radius: 20px;
    margin-left: 15px;
    align-items: center;
    position: relative;
    margin-right: 15px;
}

.searchbar img {
    position: absolute;
    width: 22px;
    height: 22px;
    margin-left: 10px;
}

.searchbar input {
    outline: none;
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    padding-left: 40px;
}

/* Right Side Icons */
.right-side {
    width: 100px;
    height: 45px;
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: 0.2s;
}

.right-side img {
    width: 20px;
    height: 20px;
    padding-left: 5px;
}

.right-side:hover {
    background: rgba(203, 203, 203, 0.674);
}

/* Left Side Weather */
.left-side {
    background: transparent;
    left: 15px;
    position: absolute;
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: 0.2s;
}

.left-side img {
    width: 35px;
    height: 35px;
}

.left-sub-side {
    background: transparent;
    padding-left: 10px;
}

#left-sub-side-main-head {
    color: black;
}

#left-sub-side-sub-head {
    color: grey;
}

.left-side:hover {
    background: rgba(203, 203, 203, 0.674);
}