@font-face {
    src: url(../fonts/Open_Sans/OpenSans-Regular.ttf);
    font-family: 'OpenSans';
}

@font-face {
    src: url(../fonts/Open_Sans/OpenSans-Bold.ttf);
    font-family: 'OpenSans';
    font-weight: 700
}

@font-face {
    src: url(../fonts/Open_Sans/OpenSans-SemiBold.ttf);
    font-family: 'OpenSans';
    font-weight: 500
}

@font-face {
    src: url(../fonts/Open_Sans/OpenSans-Light.ttf);
    font-family: 'OpenSans';
    font-weight: 300
}



body {
    font-family: 'OpenSans';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 98vh;
    color: var(--black);
}

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

img {
    width: 500px;
}

.text-container {
    display: flex;
    flex-direction: column;
    width: 600px;
}

h1 {
    text-align: center;
    font-size: 32px;
    position: relative;
    margin-bottom: 60px;
}

h1:after,
h1::after {
    content: '';
    position: absolute;
    top: calc(100% + 10px);
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--main-color);
}

h1::after {
    background-color: rgba(86, 189, 189, 1);
}

span.bold {
    font-weight: 500;
}

ul>li {
    font-weight: 300;
}

@media (max-width: 1000px) {
    img {
        width: 400px;
    }
}

@media (max-width: 800px) {
    .content {
        width: 100%;
    }

    .text-container {
        width: calc(100% - 20px);
        padding: 0 10px;
    }

    img {
        width: 80%;
        margin-bottom: 10px;
    }
}