* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(./images/pexels-eberhard-grossgasteiger-2437293.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: repeat;
}

span {
    color: crimson;
    text-shadow: 1px 1px 2px white;
}

.top {
    color: black;
    text-align: center;
    margin-top: 50px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 10px;
    text-shadow: 1px 1px 2px white;
}

.container {
    display: flex;
    width: 80%;
    margin: 50px auto;
}

.container-right p {
    margin-top: 20px;
    margin-left: 10%;
    font-size: 20px;
    line-height: 40px;
    color: black;
}

.container-right {
    background-color: rgba(255, 255, 255, 0.747);
    border-radius: 20px;
}

.container-left h2 {
    margin-left: 50px;
    width: max-content;
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
    color: white;
    text-shadow: 1px 1px 2px black;
    background-color: black;
}

.container-right h2 {
    text-align: center;
    margin-top: 20px;
    text-decoration: underline;
}

@media only screen and (max-width: 750px) {
    .top {
        font-size: 25px;
        letter-spacing: 1px;
    }
    .container {
        display: flex;
        flex-direction: column-reverse;
        width: 80%;
        margin: 50px auto;
    }
    .container-right p {
        margin-top: 20px;
        margin-left: 10%;
        font-size: 15px;
        line-height: 20px;
        color: black;
    }
    .container-right h2 {
        text-align: center;
        margin-top: 20px;
        text-decoration: none;
    }
    .container-left {
        margin-top: 40px;
        text-align: center;
    }
    .container-left h2 {
        margin-top: 10px;
        text-align: center;
        font-size: 20px;
        text-shadow: 1px 1px 2px white;
    }
    .container-left img {
        height: 200px;
        width: 200px;
    }
    main {
        width: 100%;
        height: 100%;
    }
}