@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
    --font-family: 'Montserrat', sans-serif;

    --text-color: #FFFFFF;
    --danger-color: #D02525;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    background: rgb(208,16,16);
    background: -moz-linear-gradient(180deg, rgba(208,16,16,1) 0%, rgba(132,19,19,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(208,16,16,1) 0%, rgba(132,19,19,1) 100%);
    background: linear-gradient(180deg, rgba(208,16,16,1) 0%, rgba(132,19,19,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#D01010",endColorstr="#841313",GradientType=1);
    color: var(--text-color);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #FF0000;
    border-radius: 99px;
    padding: 1rem 7rem;
    border: white 3px solid;
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
}

.text {
    font-size: 3rem;
    text-align: center;
    color: var(--text-color);
    line-height: 1.25;
}

.text span {
    font-weight: 700;
}

.icon {
    margin-top: -0.65rem;
    width: 3.5rem;
}

.top-icon {
    width: 16rem;
}

.bottom-icon {
    width: 13rem;
}

.top-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

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

.top-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}