/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Prevent scrolling */
body {
    overflow: hidden;
}

/* Fullscreen background styling */
.fullscreen-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/background.jpg') no-repeat center center/cover;
    z-index: -1;
}

/* Logo styling */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10vh;
    margin-left: 20px;
    margin-right: 20px;
}

.logo-wrapper p {
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

.logo {
    width: 600px;
    max-width: 100%;
    height: auto;
}

/* Bottom-left box styling */
.bottom-left-box {
    position: fixed;
    bottom: 5vh;
    left: 5vw;
    background-color: rgba(48, 104, 57, 0.9);
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.bottom-left-box span {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 18px;
}

.bottom-left-box a {
    color: white;
    text-decoration: none;
    opacity: 1; 
    transition: opacity 0.3s;
}
.bottom-left-box a:hover {
  opacity: 0.8;
}