/* .container{
    display: flex;
    justify-content: center;
    border: 2px solid black;
} */

/* #div{
    border: 2px solid black;
} */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');

*{
    /* font-family: Arial, Helvetica, sans-serif */
    font-family: 'Raleway', sans-serif;
}
body{
    position: absolute;
    left: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 50%; */
    box-shadow: 0px 5px 15px rgb(146, 146, 146);
    border-radius: 20px;
    /* border: 2px solid black; */
    width: 50%;
}
#form{
    margin: .5rem;
    height: 3rem;
    width: 12rem;
    border-radius: 20px;
    border: 2px solid black;
    transition: .5s;
}
#form:hover{
    border: 3px solid black;
}
#btn{
    margin: 1rem;
    padding: 1rem;
    border: none;
    background-color: rgb(60, 106, 121);
    border-radius: 20px;
    font-weight: bold;
    transition: .2s;
    color: white;
}

#btn:hover{
    background-color: rgb(37, 107, 131);
    transform: scale(1.1);
}

.items{
    margin: 1rem;
    display: flex;
    border: 2px solid lightblue;
    border-radius: 20px;
}

.list-item{
    margin-left: 1.5rem;
    /* list-style: none; */
}
ul{
    list-style: none;
    font-weight: bold;
    /* margin: 1rem; */
    padding: 0%;
    width: 200px;
    height: 10%;
}
