/* General body styling for white-to-red theme */
body {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #333;
    text-align: center;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Welcome container styling with red outline */
.welcome-container {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 40px 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    outline: 2px solid #FF4500; /* Add red outline */
    animation: slideIn 1s ease-in-out;
    color: #333;
    position: relative;
    box-sizing: border-box;
}

/* Logo styling */
.welcome-container .logo {
    margin-bottom: 20px;
}

.welcome-container .logo img {
    width: 100px;
    border-radius: 10px;
}

/* Title and subtitle styling */
.welcome-container h1 {
    color: #B22222; /* Red title */
    font-size: 36px;
    margin-bottom: 10px;
}

.welcome-container p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Button styling for white-to-red theme */
.welcome-container .btn {
    display: inline-block;
    width: calc(100% - 40px);
    padding: 15px;
    margin: 10px 20px;
    border-radius: 30px;
    background-color: #FF4500; /* Red button */
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.welcome-container .btn:hover {
    background-color: #B22222;
    transform: translateY(-3px);
}

.welcome-container .btn:last-child {
    background-color: #DC143C; /* Crimson for second button */
}

.welcome-container .btn:last-child:hover {
    background-color: #B22222;
}

/* Explanation section */
.explanation {
    background-color: #f8f9fa;
    color: #333;
    padding: 15px;
    border-radius: 15px;
    margin-top: 30px;
    outline: 2px solid #FF4500; /* Add red outline for the explanation box */
    font-size: 16px;
    text-align: left;
    box-sizing: border-box;
}

/* Animation for sliding effect */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .welcome-container {
        padding: 30px 15px;
    }

    .welcome-container h1 {
        font-size: 28px;
    }

    .welcome-container p {
        font-size: 16px;
    }

    .welcome-container .btn {
        font-size: 16px;
        padding: 12px;
        width: calc(100% - 30px);
        margin: 10px 15px;
    }

    .explanation {
        font-size: 14px;
    }
}
