@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    box-sizing: border-box;
}

html {
    display: flex;
    justify-content: center;
    background-color: black;
}

body {
    display: flex;
    flex-direction: column;
    text-align: center;
    /*background-color: white;*/
    color: black;
    font-family: 'Playfair Display', serif;
    max-width: 600px;
    /*border-radius: 20px;*/
    padding: 20px;
    gap: 20px;
    margin: 0;
    font-weight: bolder;
    /*font-size: 15px;*/
}

h1 {
    margin: 0;
    color: #273721;
    text-transform: uppercase;
}

h3 {
    /*text-transform: uppercase;*/
    /*margin-bottom: 25px;*/
    margin: 0;
}

.caps {
    text-transform: uppercase;
}

img {
    /*border-radius: 20px;*/
    max-width: 100%;
}

a {
    color: rgb(11, 75, 96)
}

#info {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: white;
    color: black;
    /*border-radius: 20px;*/
    line-height: 1.5;
    align-items: center;
    gap: 30px;

    & > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

#info2 {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #d11514;
    color: white;
    /*border-radius: 20px;*/
    line-height: 1.5;
    align-items: center;

    img {
        filter: brightness(0) invert(1);
        width: 200px;
        margin-top: 20px;
    }
}

.split {
    display: flex;
    gap: 10px;
    max-width: 100%;

    img {
        width: calc(50% - 5px);
        aspect-ratio: 1/1;
        object-fit: cover;
    }
}

.split2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*margin-bottom: 20px;*/
}

.button {
    padding: 5px 10px;
    border-style: solid;
    color:black;
    text-decoration: none;
}

.button:hover {
    background-color: black;
    color:white;
    border-color: black;
}

