@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&display=swap');

body {
    font-family: "Poppins", serif;
    background-color: rgb(24, 24, 24);
    margin: 0;
    padding: 0;
    color: white;
}

.heading {
    font-size: 35px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 15px auto 10px auto;
    padding: 0;
}

#notepad {
    color: rgb(255, 123, 0);
}

.container {
    padding: 35px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#title {
    width: 99%;
    height: 35px;
    border: none;
    border-radius: 4px;
    padding: 8px;
    background-color: rgb(49, 47, 47);
    font-family: "Poppins", serif;
    font-size: 17px;
    color: white;
    outline: none;
}

#details {
    width: 99%;
    height: 100px;
    border: none;
    border-radius: 4px;
    padding: 8px;
    background-color: rgb(49, 47, 47);
    font-family: "Poppins", serif;
    font-size: 17px;
    color: white;
    resize: none;
    outline: none;
}

#button {
    width: 135px;
    text-align: left;
    border: none;
    border-radius: 4px;
    padding: 8px;
    background-color: rgb(124, 124, 124);
    font-family: "Poppins", serif;
    font-size: 17px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#button:hover {
    background-color: rgb(255, 123, 0);
    transform: translateX(10px);
}

.tasks {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 35px auto auto auto;
}

.task {
    width: 280px;
    border: none;
    border-radius: 4px;
    padding: 0;
    margin: 0;
    padding: 10px;
    background-color: rgb(49, 47, 47);
    font-family: "Poppins", serif;
}

.links {
    margin: 25px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}

.links a {
    text-decoration: none;
    color: white;
    color: rgb(255, 123, 0);
    color: #ff7b00;
    width: 70px;
    border: none;
    border-radius: 20px;
    background-color: rgb(65, 57, 57);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.links a:hover {
    background-color: rgb(255, 255, 255);
    background-color: rgb(77, 68, 68);
    background-color: rgb(39, 35, 35);
    transform: translateY(-3px);
}

.task p {
    padding: 0;
    margin: 0;
    color: rgb(161, 158, 158);
    font-size: 17px;
    font-weight: 700;
}

.tasks h3 {
    color: rgb(161, 158, 158);
}

@media (max-width: 350px){
    .heading {
        font-size: 30px;
    }

}