:root {
    --primary: #1206A5;
    --primary-light: #5BA8E9;
    --secondary: #FC4A14;
    --white: #FFFFFF;
}

html{
    font-size: .2rem;
}

@media only screen and (max-height: 400px){
    .logo{
        scale: .5;
    }
}

@media only screen and (min-height: 400px){
    html{
        font-size: .35rem;
    }

}

@media only screen and (min-width: 500px) {
    html{
        font-size: .7rem;
    }
}

@media only screen and (min-width: 1200px) {
    html{
        font-size: .8rem;
    }
}


@media only screen and (min-width: 1900px) {
    html{
        font-size: 1rem;
    }
}

@media only screen and (min-width: 2200px) {
    html{
        font-size: 2.2rem;
    }

    .logo{
        scale: 5;
    }
}

@font-face {
    font-family: 'Gildan Sans';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('/public/fonts/GildanSans-Bold.woff2') format('woff2')
}

@font-face {
    font-family: 'Gildan Sans';
    font-style: normal;
    font-weight: 500;
    src: local(''),
    url('/public/fonts/GildanSans-Medium.woff2') format('woff2')
}

@font-face {
    font-family: 'Gildan Sans';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('/public/fonts/GildanSans-Regular.woff2') format('woff2')
}


* {
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Gildan Sans', sans-serif;
}

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

    height: 100vh;
    width: 100vw;

    position: relative;
}

.bg-img-wrapper{
    position: absolute;
    inset: 0;
    opacity: 0.6;

    background-image: url("/public/img/bg-image.webp");
    background-color: var(--primary);
}

.container{
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    margin: 5rem;
    padding: 0 3rem;

    background-color: var(--white);
    color: var(--primary);
}

.logo-container{
    margin-top: 3rem;
}

.heading-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.heading{
    font-size: 12rem;
    font-weight: bolder;
}

.heading-animation {
    margin-left: 0;
    animation: rotate 3s infinite ease-in-out;
}

.subheading{
    font-size: 2.5rem;
}

.heading, .subheading{
    text-align: center;
}

.content-wrapper{
    border-radius: 12rem;
    background-color: var(--primary);
    padding: 1.5rem 3rem;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;


}

.text{
    color: var(--white);
    font-size: 2rem;
}

.cta-button{
    font-size: 1.5rem;

    border: 2px solid var(--primary);
    background-color: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 12rem;

    cursor: pointer;

    text-decoration: none;

    transition: all .4s ease;

    animation: pulse 5s infinite ease-in-out;
}

.cta-button:hover{
    border: 2px solid var(--white);
    background-color: var(--primary);
    color: var(--white);
    transition: all .4s ease;

}

.logo{
    width: 149px;
    height: 29px;
}

@keyframes pulse {
    0% {
        transform: translateY(0);
    }
    10%{
        transform: translateY(-.7rem);
    }
    25%{
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% {
        /*opacity: .2;*/
        transform: rotateY(-180deg);
    }
    50%{
        /*opacity: 1;*/
        transform: rotateY(0deg);
    }
    100% {
        /*opacity: .2;*/
        transform: rotateY(-180deg);
    }
}