/* html,body{
    margin: 0;
    padding: 0;
}
#my-video{
border: 10px green solid;
  height: auto;
  width: 100%;
}
.intro{
  border: solid 10px red;

} */

.container{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.my-video{
    min-width: 100%;
    max-width: 100%;
}
.name{   
    margin-top: 0;
    padding-bottom: 3%;
    display: flex;
    justify-content: center;
}

.intro{
    position: relative;
    max-width: 100%;

    background-color: rgba(0,0,0,.5);
    color:#fff;
    padding: 5%;
    margin-top: 20px;
    backdrop-filter: blur(3px);
}

.top-nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    background-color: rgb(0, 0, 0,0.6);
    color:#2f8bcb;
    font-size: 20px;
    font-weight: bolder;
    max-width: 20%;
    margin:auto;
    padding: 5px;
}

a{
    color: inherit;
    text-decoration: none;

}
a :hover{
    cursor: crosshair;
}

p{
    font-size: 20px ;
}

.index-p1{
    display: flex;
    justify-content: center;
}
.index-p2{
    display: flex;
    justify-content: center;
}

.contact-p1{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.logo{
    text-align: center;
    margin-top: 5%;
    font-size: 20px;
}


.weather-image-container{
    display: flex;
    justify-content: center;
    max-width: 30%;
}

.weather-img{
    border-radius: 50px;
    transition:transform 0.3s ease-in-out;
    padding-bottom: 50px;
    height: 500px;
    object-fit: contain;
}

.weather-img:hover{
    transform: scale(1.2);
}

.weather-api{
    border: 2px solid green;
    max-width: 30%;
    max-height: 10%;
    backdrop-filter: blur(30px);
}
.weather-url{
    text-align: center;
}
.description{
    text-align: center;
}