/* Define the Slackside One Regular font */
@font-face {
    font-family: 'Slackside One';
    src: url('SlacksideOne-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Slackside One', sans-serif;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    height: auto;
}

.text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: black;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.text h1 {
    font-size: 60px; /* Increased from 48px */
    margin: 0;
}

.text p {
    font-size: 30px; /* Increased from 24px */
    margin: 10px 0 0 0;
}