.bgImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: fadeIn 0.5s linear;
}

body {
    background: #bdc3c7;
    display: grid;
    grid-template-rows: 200px 1fr;
    height: 100vh;
    justify-items: center;
    color: #ffffff;
}

header {
    width: 100vw;
    height: 14vw;
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
}
.date {
    padding-left: 30px;
}

.day {
    font-size: 2vw; 
}

.time {
    font-size: 6vw;
    font-weight: 800;
    padding-bottom: 110px;
}

.name {
    display: grid;
    margin-bottom: 50px;
}

.weather {
    display: grid;
    justify-items: end;
    align-items: flex-start;
    padding-right: 40px;
    height: 100%;

    font-size: 3vw;
}
li {
    font-size: 2vw;
}

input {
    background: transparent;
    border: none;
    width: 24vw;
    font-size: 3vw;
    border-bottom: 4px solid #55efc4;
    outline: none;
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}