body {
    margin: 0;
    font-family: 'Verdana', sans-serif;
    font-size: 18px;
}
* {
    box-sizing: border-box;
}
.content {
    position: relative; /* Make this a positioning context */
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3%;
}
.background {
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.9; /* Set to 0 for full transparency */
} 
.logo {
    margin-bottom: 50px;
}
.logo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
a {
    text-decoration: none;
    color: rgb(24, 23, 23);
}
.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: #333;
    height: 30vh;
}
.largetext {
    font-size: 22px;
}
.address {
    text-align: center;
}
.company-info {
    position: absolute;  /* Absolutely position the box */
    bottom: 2px;        /* Distance from the bottom */
    left: 2px;          /* Distance from the left */
    padding: 10px;
    text-align: center;
    background-color: #323030;
    color: rgb(223, 214, 223);
    display: inline-block;
    border-radius: 20px;
}