body, html {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    /* background-color: white; */
    /* background-size: cover; */
    /* background-repeat: repeat-x;
    background-position: top; */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content-wrapper {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

.background {
    height: 50%;
    width: 100%;
    /* left: 0;
    top: 0; */
    background-image: url('https://farewell.internsheeps.com/images/background.png');
    background-position: top;
    /* background-size: cover; */
    position: fixed;
    background-repeat: repeat-x;
    z-index: -1;
}

.logos {
    display: flex;
    justify-content: center;
}

.logo {
    width: 324px;
}

h1 {
    color: #00bcd4;
    font-size: 36px;
    margin-bottom: 36px;
    
}

.content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.handshake {
    width: 438px;
    margin-right: 60px;
}

.text {
    text-align: left;
    max-width: 568px;
}

.info {
    margin-bottom: 20px;
}

.info p {
    margin: 10px 0;
}

.highlight {
    color: #e53935;
}

.button {
    display: inline-block;
    padding: 16px 20px;
    background-color: #e53935;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 24px;
}

a {
    color: #e53935;
    text-decoration: none;
}

.custom-line {
    border: none;            /* Remove default border */
    height: 1px;             /* Set the height of the line */
    background-color: lightgray;  /* Set the color of the line */
    margin: 20px 0;          /* Optional: Add some vertical spacing */
}


@media (max-width: 600px) {

    body, html {
        height: auto;
    }

    .background {
        height: 60vh;
        left: 0;
        top: 0;
        background-position: top;
    }

    .logos {
        display: flex;
        justify-content: center;
        margin: 4px 16px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    /* .main-content-wrapper {
        padding-top: 16vh
    } */

    .handshake {
        width: 100%;
        margin: 0 0 20px 32px;
    }

    h1 {
        font-size: 1.5em;
        margin: 36px;
    }

    .button {
        padding: 8px 16px;
    }
}