/* btn- #ff0066 , div- #13173a , bg- #0b0e2f , 
text- #f8fcff */

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.port{
    font-weight: 900;
    color: #ff0066;
    width: fit-content;
}

.port:hover{
    color: #f8fcff;
    transition: 0.2s all;
}

.master{
    background-color: #0b0e2f;
    color: #f8fcff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100dvw;
    height: 100dvh;
}

.master1{
    background-color: #13173a;
    height: 90%;
    width: 45%;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.master1A{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.master1B img{
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.master1B{
    position: relative;
}

.top-left{
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50%;
}

.master2{
    background-color: #0b0e2f;
    height: 90%;
    width: 45%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line{
    width: 60%;
    height: 5px;
    border-radius: 25px;
    background-color: #ff0066;
    border: none;
}

.container3 button {
    background-color: #ff0066;
    width: 100%;
    height: 50px;
    padding: 10px;
    border-radius: 5px;
    color: #f8fcff;
    display: flex;
    align-items: center;
}

a, .container3 button{
    text-decoration: none;
    font-weight: 600;
}

.container3 button:hover{
    background-color: #f8fcff;
    color: #ff0066;
    transition: 0.3s all;
}

.info{
    font-style: italic;
}

strong{
    color: #ff0066;
}

.container1, .container2, .container3{
    background-color: #13173a;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
    padding: 20px;
}

.container2{
    flex-direction: column;
    justify-content: space-evenly;
}

.container {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider {
    -webkit-appearance: none;
    margin: 25px;
    width: 90%;
    height: 5px;
    background: #ff0066;
    outline: none;
    border-radius: 25px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 5px;
    height: 25px;
    border-radius: 25px;
    background: #f8fcff;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: #ff0066;
    cursor: pointer;
}

.sub_container1{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.range_button{
    display: flex;
    justify-content: space-between;
}

.minimum, .maximum{
    background-color: #ff0066;
    border: none;
    height: 40px;
    width: 80px;
    cursor: pointer;
    border-radius: 25px;
}

.minimum:hover, .maximum:hover{
    background-color: #f8fcff;
    transition: 0.2s all;
}

.same_line input{
    height: 50px;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding: 20px;
}

.container2 h4{
    padding: 10px;
}

.same_line input:focus{
    outline: none;
}

.container3 button{
    border: none;
}

@media screen and (max-width: 768px){
    .master{
        padding: 20px 0px 20px 0px; 
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .master1, .master2{
        width: 90%;
        display: flex;
        gap: 20px;
    }

    .container1, .container2, .container3{
        height: 50%;
        padding: 20px;
    }

    .container2{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sub_container1{
        display: flex;
        gap: 10px;
    }

    .same_line input{
        width: 100%;
    }
}

