body {
    font-size: 24px;
}

a:link {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

a:visited {
  color: rgb(255, 255, 255);
  text-decoration: inherit;
}

.container {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-big_img {
    width: 40%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-top: 2%;
    border: 4px solid white;
}

.p-big_caption, .p-small_caption {
    font-size: 18px;
    color: rgb(200, 200, 200);
    font-style: italic;
    text-align: center;
    margin-top: 0.5%;
    margin-bottom: 3%;
}

.p-title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-top: 3%;
    margin-bottom: 2.5%;
}


.p-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4%;
    width: 80%;
    margin-bottom: 3%;
}


.p-text {
    background-color: rgb(29, 29, 29);
    flex: 3;
    font-size: 22px;
    text-align: left;
}


.p-info {
    text-align: left;
    flex: 1.2;
    background-color: rgb(70, 70, 70);
    padding: 20px;
    border: 4px solid white;
    border-radius: 10px;
    font-size: 20px;
    line-height: 1.4em;
}

.p-small_img {
    width: 25%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-top: 2%;
    border: 4px solid white;
}

@media (max-width: 1080px) {
    .p-content {
        flex-direction: column;
        align-items: center;
    }

    .p-info {
        width: 80%;
        margin-top: 2%;
    }

    .p-big_img {
        width: 90%;
    }

    .p-small_img {
        bottom: 0;
        width: 30%;
    }
}

@media (max-width: 768px) {
    .p-info {
        font-size: 16px;
    }

    .p-text{
        font-size: 16px;
    }

    .p-title{
        font-size: 32px;
    }

    .p-big_img {
        width: 70%;
    }

    .p-small_img {
        width: 45%;
    }
}

