@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: "Open Sans", sans-serif;
}

#content {
    padding-top: 20px;
    background-image: url(../img/Background-WEBP.jpg);
    font-family: "Open Sans", sans-serif;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

header .tagline {
    font-size: 2rem;
    border-radius: 50px;
    background-color: #ffffff6a;
    padding: 10px 100px;
    color: #000000;
    overflow: hidden;
    font-weight: 500;
    border: 2px solid #d92e27;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container img {
    width: 25%;
}

.container h1 {
    margin-top: 30px;
    font-size: 2.5rem;
    color: #ff0000;
}

.container h1 span{
    font-weight: 400;
}

.container button {
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    width: 30%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid black;
    margin-top: 30px;
}

.container button:hover {
    background-color: #940019;
  border: none;
  color: #fff;
}

.footer{
  position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    font-size: 10px;
}

@media (max-width: 1030px){
    header .tagline {
        font-size: 1rem;
        border-radius: 100px;
        padding: 10px 50px;
        border: 2px solid #d92e27;
    }

    .container img {
        width: 25%;
    }

    .container h1 {
        margin-top: 50px;
        font-size: 1.5rem;
        color: #ff0000;
    }

    .container button {
        background-color: transparent;
        color: rgb(0, 0, 0);
        padding: 10px;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        width: 30%;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: 2px solid black;
        margin-top: 30px;
    }

    .container button:hover {
        background-color: #940019;
        border: none;
        color: #fff;
    }

    .footer{
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 20px;
        font-size: 10px;
    }
}

@media (max-width: 430px){
    header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }

    header .tagline {
        font-size: 1rem;
        border-radius: 50px;
        padding: 10px 50px;
        border: 2px solid #d92e27;
    }

    .container img {
        width: 40%;
    }

    .container h1 {
        margin-top: 30px;
        font-size: 1.3rem;
        color: #ff0000;
    }

    .container button {
        background-color: transparent;
        color: rgb(0, 0, 0);
        padding: 10px;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        width: 80%;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: 2px solid black;
        margin-top: 20px;
    }

    .container button:hover {
        background-color: #940019;
        border: none;
        color: #fff;
    }

    .footer{
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 20px;
        font-size: 6px;
    }
}

@media (max-width: 380px){
    header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }

    header .tagline {
        font-size: 15px;
        border-radius: 50px;
        padding: 10px 30px;
        border: 2px solid #d92e27;
    }

    .container img {
        width: 50%;
    }

    .container h1 {
        margin-top: 20px;
        font-size: 1.3rem;
        color: #ff0000;
    }

    .container button {
        background-color: transparent;
        color: rgb(0, 0, 0);
        padding: 10px;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        width: 80%;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: 2px solid black;
        margin-top: 20px;
    }

    .container button:hover {
        background-color: #940019;
        border: none;
        color: #fff;
    }

    .footer{
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 20px;
        font-size: 7px;
    }
}

@media (max-width: 320px){
    header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }

    header .tagline {
        font-size: 12px;
        border-radius: 50px;
        padding: 10px 30px;
        border: 2px solid #d92e27;
    }

    .container img {
        width: 50%;
    }

    .container h1 {
        margin-top: 20px;
        font-size: 1rem;
        color: #ff0000;
    }

    .container button {
        background-color: transparent;
        color: rgb(0, 0, 0);
        padding: 10px;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        width: 80%;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: 2px solid black;
        margin-top: 20px;
    }

    .container button:hover {
        background-color: #940019;
        border: none;
        color: #fff;
    }

    .footer{
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 20px;
        font-size: 7px;
    }
}