*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #011627;
    color: #fdfffc;
    height: 100vh;
    /* width: 100vw; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.app{
    display: flex;
    gap: 30px;
    flex-direction: column;
    flex-wrap: wrap;
}

/* .header{
    display: flex;
    text-align: center;
    font-size: 70px;
} */

.dad-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0.4px solid #ffa01c91;
    padding: 50px;
    text-align: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 600;
}


#getDad{
    padding: 10px;
    font-weight: 500;
    width: max-content;
    background-color: #ff9f1c;
    color: #ffffff;
    border: 1px solid #ff9f1c;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: .5s cubic-bezier(0.3, 1, 0.3, 1);
}

#getDad:hover{
    background-color: transparent;
    color: #fdfffc;
    border: 1px solid #ff9f1c;
    outline: none;
}

#getDad:active{
    transform: scale(0.8);
}