/* my-design.component.scss */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/Stars.svg') center center fixed;
    background-size: cover;
    z-index: -1; /* Place it behind other elements */
}

/* rounded-box.component.scss */
.rounded-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30%; /* Adjust the height as needed */
    width: 30%; /* Adjust the width as needed */
    background-color: rgba(217, 217, 217, 0.15);
    border-radius: 10px;
    padding: 20px;
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.logo {
    height: 75%;
    width: 80%;
    margin-left: 5px;
}



.button-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
}

.button {
    background-color: rgba(255, 255, 255, 0.5); /* Light white */
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    color: #000; /* Black text color */
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
    width: 120px; /* Adjust the width as needed for 4 buttons with space in between */
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text and icon vertically */
}

.button:hover {
    background-color: #fff; /* Dark white on hover */
    color: #000; /* Black text color on hover */
    border: 3px solid #000;
}

.button img {
    width: 45px;
    height: 50px;
    margin-bottom: 10px;
}


