body {
    font-family: Arial, sans-serif;
    background: url('../img/ocotek-background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    margin: 0;
    padding: 0;
    height: 100%;
}
.content {
    text-align: center;
    margin-top: 30vh;
    align-content: center;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}
.company-name {
    color: white;
    font-weight: bold;
    font-size: 24px; /* Increased font size */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Example of custom font family */
    text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px  1px 0 #000,
            1px  1px 0 #000; /* Text shadow for stroke effect */
}
.contact-link {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.max-p-width {
    max-width: 450px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 20px; /* Add padding to create space between content and background */
    border-radius: 10px; /* Optional: Add rounded corners */
}

.copyright {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7); /* Lighter text color */
}
a, a:hover {
    text-decoration: none;
    text-underline: none;
    color: inherit;
}