@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Montserrat: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');

:root {
    --bg_box: #151515;
    --shadow_box: 0 0 42px 5px #74707075;
    --border: solid rgba(119, 116, 116, 0.308);
}

* {
    font-family: Comfortaa;
}

body {
    background: url('images/bg.jpg') no-repeat center fixed;
    background-size: cover;
    margin: auto;
    overflow: hidden;
}

input {
    height: 27px;
    width: 400px;
    color: white;
    background-color: var(--bg_box);
    box-shadow: var(--shadow_box);
    border: var(--border);
    border-radius: 20px 0 0 20px;
    padding-left: 15px;
    font-size: 16px;
}

button {
    height: 35px;
    width: 100px;
    color: whitesmoke;
    background-color: var(--bg_box);
    box-shadow: var(--shadow_box);
    border: var(--border);
    border-radius: 0 20px 20px 0;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.253);
}

.wrapper {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.user_box {
    height: 150px;
    width: 150px;
    box-shadow: var(--shadow_box);
    background-color: var(--bg_box);
    border: var(--border);
    border-radius: 20px;
    transition: 0.3s;
}

.box {
    height: 150px;
    width: 150px;
    box-shadow: var(--shadow_box);
    background-color: var(--bg_box);
    border: var(--border);
    border-radius: 20px;
    transition: 0.3s;
}

.user_box img, .box img {
    height: 120px;
    padding: 15px;
}

.box:hover, .user_box:hover {
    background-color: rgba(255, 255, 255, 0.253);
    transform: scale(1.1);
}

.sub_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.column3, .column2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.column2 {
    gap: 75px;
}

.column3 {
    gap: 75px;
}

.search {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 135px;
    gap: 10px;
}

#clock {
    color: #ffffff;
    font-size: 56px;
    text-align: center;
    margin-top: 40px;
}

#weather-widget {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 10;
}

#weather-icon {
    width: 50px;
    height: 50px;
    background-size: cover;
    margin-right: 10px;
}

#temperature {
    font-size: 18px;
    font-weight: bold;
}

#location {
    font-size: 14px;
    opacity: 0.8;
}