@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

* {
    padding: 0;
    margin: 0;
}
.body-bg {
    background-color: rgb(255, 255, 255);
}
.nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
    margin-top: 45px;
    padding-bottom: 50px;
    border-bottom: 4px solid rgb(202, 14, 14);
}
.nav li {
    display: flex;
    justify-content: center;
}
.nav li a {
    text-decoration: none;
    color: rgb(202, 14, 14);
    font-size: 26px;
}
.bg {
    display: flex;
    background-color: rgb(202, 14, 14);
    margin-top: 5rem;
    height: 500px;
}
.potato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 230px;
    height: 230px;
    margin: auto;
}
.header {
    color: white;
    font-family: "Poppins";
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
}
.poppin {
    font-family: "Poppins";
}
.poppin-a {
    font-family: "Poppins";
}
/* info styles */
.info {
    /* display: inline-block;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center; */
    display: flex; /* Change display to flex */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 10vh; /* Set a height to center vertically on the page */
    text-align: center;
    margin: 10px 10px;
}
.button-potato {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 35px;
    color: black;
}
.button-potato button {
    color: black;
    font-family: "Poppins";
    font-size: medium;
    border-radius: 10px;
    width: 125px;
    height: 70px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 4px 8px rgb(202, 14, 14);
    user-select: none;
}
.button-potato button:hover {
    background-color: rgb(230, 230, 230); /* Darker green background color */
  }
/* white paper styles */
.potato-wp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 600px;
    height: 600px;
    
}
.wp-p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 600px;
    height: 300px;
    text-align: center;
}
.container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.blurry-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/Celestial-Space-Backgrounds-Pack.jpg'); /* Replace 'background.jpg' with your background image */
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(3px); /* Adjust the blur amount as needed */
    z-index: -1;
}
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}
.content a {
    font-family: "Poppins";
    text-decoration: none;
    color: aliceblue;
    font-size: 20px;
}

.rounded-container {
    width: 350px;
    height: 200px;
    background-color: white;
    border: 2px solid rgb(202, 14, 14);
    border-radius: 15px;
    padding: 10px;
    margin: 20px;
}
/* responisve css */
@media screen and (max-width: 1025px) {
    .nav li a {
        color: rgb(202, 14, 14);
        font-size: 16px;
    }
    .nav ul {
        margin-left: 20px;
        margin-right: 20px;
    }
    .potato {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 130px;
        height: 130px;
        margin: auto;
    }
    /* styles for wp  */
    .potato-wp{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }
    .wp-p {
        width: 350px;
        height: 200px;
        text-align: center;
    }
  }
  