/* Reset some default styling */
body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

/* Style the home container */
.home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

/* Style the hero section */
.hero-section {
    position: relative;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background: url('/images/MyFolio_logo.jpg') no-repeat center center;
    background-size: cover;
    width: 800px;
    height: 600px;
    margin: auto;
}

/*styling for the slogan and the buttons inside hero section */
.slogan {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(0, 55, 255);
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}

.slogan p {
    font-size: 1em;
}

.cta-buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: rgba(55, 128, 255, 0.7);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: rgba(176, 191, 231, 0.9);
}