body {
    background-color: black;
}

img {
    border-radius: 4px;
    height: auto;
    max-width: 100%;
}

.logo {
    width: 200px;
    height: 200px;
}

.image-container {
    position: relative;
}

.text-overlay {
    position: absolute;
    top: 35%;
    left: 20%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 10px;
}

.text-overlay h1 {
    color: white;
    font-size: 2vw;
    font-family: myFont;
    /* Font family */
    text-align: center;
    /* Text alignment */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Text shadow */
    letter-spacing: 6px;
}

.text-overlay h3 {
    color: white;
    font-size: 40px;
    font-family: myFont;
    /* Font family */
    text-align: center;
    /* Text alignment */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Text shadow */
    letter-spacing: 6px;
}

.text-overlay2 {
    position: absolute;
    top: 45%;
    left: 20%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 10px;
}

.text-overlay3 {
    position: absolute;
    top: 60%;
    left: 20%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 10px;
}

@font-face {
    font-family: myFont;
    src: url(venus.ttf);
}