.sec {
    height: 100vh;
    padding: 100px;
    position: relative;
    background: #003329;
}

.upload-component {
    width: 80%;
    height: 20vh;
    display: flex;
    border-radius: 15px;
    border: 3px dashed white;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.upload-button {
    color: white;
    cursor: pointer;
    background-color: black;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 4px 2px;
    height: 55px;
    width: 140px;
    border-radius: 15px;
    transition: 0.3s;
    border: 2px solid white;
}

.upload-button:hover {
    transform: scale(1.1);
}

.upload-icon {
    height: 30px;
    width: 30px;
    margin-right: 8px;
}
