* {
    margin: 0;
    padding: 0;
}

.all-content {
    height: 100vh; 
    background: linear-gradient(rgb(5, 130, 146), rgb(24, 38, 119)) ;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

h2 {
    text-align: center;
    padding-top: 15px;
}

.header {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.search {
    width: 50vw;
    height: 40px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.search input {
    border: none;
    width: 80%;
    height: 100%;
    border-radius: 15px;
    padding-left: 20px;
    font-size: 18px;
}

.search form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.search-button {
    border: none;
    width: 20%;
    height: 100%;
    border-radius: 15px;
    background-color: white;
    font-size: 18px;
    cursor: pointer;
}

.main-content {
    width: 50vw;
    background-color: white;
    margin: 0 auto;
    border-radius: 15px;
}

.location-text {
    font-size: 20px;
    text-align: center;
    padding-top: 15px;
}

.degree {
    font-size: 30px;
    font-weight: normal;
}



.weather {
    display: flex;
    flex-direction: row;
    padding-top: 15px;
}

.icon-block {
    width: 34%;
    height: 150px;
    background-color: rgb(251, 237, 107);
}

.weather-icon {
    display: flex;
    justify-content: center;
    padding: 10px 0px;
}

.weather-icon img {
    border-radius: 40%;
    width: 45%;
}
.weather-description {
    text-align: center;
    font-size: 20px;
}

.temperature-block {
    width: 34%;
    background-color: rgb(99, 89, 255);
}

.temperature {
    font-size: 42px;
    text-align: center;
    padding: 36px 0;
}


.wind-blok {
    width: 33%;
    background-color: rgb(251, 237, 107);
}

.speed {
    font-size: 30px;
    font-weight: normal;
}


.my-location-block {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.my-location {
    background-color: #2f2fb5;
    color: white;
    width: 150px;
    height: 29px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
}