@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;1,100;1,200;1,300;1,400;1,500;1,600&display=swap");
body{
    font-family: "Poppins", sans-serif;
}
*{
    margin: 0;
    padding: 0;
}

#container{
    border: solid rgb(255, 138, 138) 3px;
    padding: 1rem;
    width: 40vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: bisque;
}

h1{
    margin-bottom: 1rem;
    font-size: 3rem;
    color: rgb(255, 138, 138);
}

#container span{
    font-size: 1.3rem;
    text-transform: capitalize;
    font-weight: 900;
}

#container input{
    padding: 1rem;
    padding-right: 3rem;
    margin: 1rem 0;
}

#container button{
    padding: 0.6rem 1.7rem;
    border-radius: 8px;
    background-color: rgb(255, 138, 138);
    border: black 1px solid;
    color: white;
    font-size: 0.9rem;
    font-weight: 800;

}

section{
    width: 100vw;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

#container button:hover{
    background-color: white;
    color: rgb(255, 138, 138);
}

nav{
    background-color: #e2f3f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
    align-items: center;
    padding: 0.1rem 3rem;
    margin: 1rem 3rem;
}

nav a{
    color: rgb(164, 37, 255);
    text-decoration: none;
}

nav a:hover{
    color: rgb(255, 138, 138);
}

nav h1{
    font-size: 2rem;
    margin-top: 1rem;
}

#eror-box{
    
    position: fixed;
    background-color: white;
    border: solid 1px black;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 12rem 12rem;
    border-radius: 1rem;
    
}

#eror-box button{
    padding: 0.6rem 1.7rem;
    border-radius: 8px;
    background-color: rgb(255, 138, 138);
    border: black 1px solid;
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
}

#eror-box button:hover{
    background-color: white;
    color: rgb(255, 138, 138);
    cursor: pointer;
}
