@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Red+Rose:wght@300..700&display=swap');




body {
    background-image: url(./0x0.webp);
    background-size: cover;
}

.w-1140 {
    width: 1140px;
    margin: auto;
}

.w-100 {
    width: 100%;
}


ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style: none;
    float: left;
}

ul li a {
    display: block;
    text-decoration: none;
    height: 30px;
    width: 150px;
    color: wheat;
    background-color: transparent;
    line-height: 30px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-weight: 800;

}

ul li a:hover {
    background-color: black;
    color: pink;
    border-radius: 15px;
}

.pos-rel {
    position: relative;
}

.menu {
    width: 100%;
    background-color: gray;
    position: absolute;
    left: 0px;
    padding: 10px;
    display: none;
    box-shadow: 0px 0px 5px 0px #ccc;
}

ul li:hover .menu {
    display: block;
}

.w-25 {
    width: calc(25% - 22px);
    background-color: white;
    float: left;
    border-right: 2px solid rgb(238, 5, 5);
    padding: 10px;
}

.w-25 ul li a {
    background-color: transparent;
    width: 300px;
    text-align: left;
    padding-left: 10px;
    display: block;
}

.border-none {
    border: none;
}

.w-25 h3 {
    padding: 10px;
    color: crimson;
    border-bottom: 1px solid black;
}




.content {
    width: 100%;
    position: absolute;
    top: 50%;
    text-align: left;
    color: white;
}

.content h1 {
    font-size: 70px;
    margin-top: 80px;
    transition: 0.5s;

}
    


h1:hover {
    color: black;


}

button {
    width: 200px;
    height: 50px;
    border-radius: 20px;
    color: black;
    line-height: 10px;
    font-size: 15px;
    transition: 0.5s;

}

button:hover {
    background-color: black;
    color: pink;
}