*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root{
    
    --main-color:#365E32;
}
.header{
    font-size: 3.5rem;
    font-family: 'Poppins',sans-serif;
    letter-spacing: 1.5px;
    font-weight: 500;
    color:rgb(6, 6, 6);
    margin-top: 0px;
}

body{
    height: 100vh;
    display: flex;
    justify-content:center;
    flex-direction: column;
    align-items: center;
    background-image: url("bjark-DZ975EkUJH0-unsplash.jpg");
    background-size: cover;  
    font-family: 'Poppins',sans-serif;
    color: rgb(6, 6, 6);
    letter-spacing: 1px;
}


.location,.temparature{
    height: 30vh;
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.temparature{
    flex-direction: column;
}
.degree-section{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.degree-section span{
    margin: 10px;
    font-size: 30px;
    font-weight: 500;
}

.degree-section h2{
    font-size: 40px;
    font-weight: 500;
    
}
.temparature-description{
    font-weight: 700;
}

.container{
    display: flex;
    flex-direction: column;
    gap:1rem
}

.btn{
        display: inline-block;
        cursor: pointer;
        background: var(--main-color);
        border-radius: 4rem;
        box-shadow: 0 0 0.5rem var(--main-color);
        font-size: 1rem;
        color: white;
        letter-spacing: .1rem;
        font-weight: 600;
        transition: 0.5s ease;
    }

.btn1{
        display: inline-block;
        cursor: pointer;
        background: var(--main-color);
        border-radius: 4rem;
        box-shadow: 0 0 0.5rem var(--main-color);
        font-size: 1rem;
        color:white;
        letter-spacing: .1rem;
        font-weight: 600;
        transition: 0.5s ease;
}

.btn:hover{
    box-shadow: none;
}

.btn1:hover{
    box-shadow: none;
}

input{
    display: inline-block;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem var(--main-color);
    font-size: 1rem;
    color:black;
    letter-spacing: .1rem;
    font-weight: 600;
    transition: 0.5s ease;

}

input:hover{
    box-shadow: none;
}



/* For mobile devices */
@media screen and (max-width: 720px) {
    .location, .temparature {
        width: 100%;
    }
    body{
        background-image: url("chuttersnap-9AqIdzEc9pY-unsplash.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        height: 100vh;
        display: flex;
        justify-content:center;
        flex-direction: column;
        align-items: center; 
        font-family: 'Poppins',sans-serif;
        color: rgb(6, 6, 6);
        letter-spacing: 1px;
    }

    .header {
        font-size: 2.5rem;
    }

    .degree-section h2 {
        font-size: 25px;
    }

    .degree-section span {
        font-size: 20px;
    }

    .temparature-description {
        font-size: 16px;
    }

    .btn, .btn1 {
        font-size: 1rem;
    }

    input {
        font-size: 1rem;
    }
}

/* For tablets */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .location, .temparature {
        width: 80%;
    }

    .header {
        font-size: 3rem;
    }

    .degree-section h2 {
        font-size: 30px;
    }

    .degree-section span {
        font-size: 25px;
    }

    .temparature-description {
        font-size: 18px;
    }

    .btn, .btn1 {
        font-size: 1rem;
    }

    input {
        font-size: 1rem;
    }
}
