* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.outer {
    background-color: #130f40;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.main-cantainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: fit-content;
    width: 400px;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 15px;
}

.inp-btn {
    margin-top: 15px;
}


.input {
    outline: none;
    border: none;
    border-bottom: 1px solid white;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-family: sans-serif;
    background-color: transparent;
}

.inp-btn button {
    padding: 7px 12px;
    border-radius: 4px;
    font-family: sans-serif;
    cursor: pointer;
    border: none;
    background: #06064b;
    color: white;
    transition: .3s;
    margin-left: 3px;
}

.inp-btn button:hover {
    transform: scale(.9);
}

.data {
    width: 380px;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
}

.cloud {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cloud h2 {
    font-weight: 500;
    letter-spacing: 1px;

}

.cloud p {
    color: rgba(255, 255, 255, 0.465);
}

.cloud h1 {
    font-size: 2.4rem;
    font-weight: 300;
}

span {
    color: #f7c411;
    font-size: 1.4rem;
}

img {
    width: 120px;
}

.location {
    display: flex;
    justify-content: center;
    gap: 7px;
}

.location p {
    font-size: medium;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.span {
    color: #f7c411;
    font-size: 1.1rem;
}

.info {
    margin-top: 20px;
}

.div p {
    margin-top: 3px;
    color: #f7c411;
    font-size: 1.1rem;
}

@media screen and (max-width:420px) {
    .main-cantainer {
        /* border: 1px solid red; */
        height: 600px;
        width: 100%;
    }
}

@media screen and (max-width:320px) {
    .main-cantainer {
        height: 500px;
        width: 100%;
    }
}