@font-face {
    font-family: 'GilroyRegular';
    src: url('./webFonts/GilroyRegular/font.woff');
    src: url('./webFonts/GilroyRegular/font.woff2');
}
@font-face {
    font-family: 'GilroySemibold';
    src: url('./webFonts/GilroySemiBold/font.woff');
    src: url('./webFonts/GilroySemiBold/font.woff2');
}
:root{
    font-family: GilroyRegular;
    color: #F9F9FE;
    font-size: 18px;
}
h1,h2,strong{
    font-family: GilroySemibold;
}
p{
    text-align: justify;
}
body{
    overflow-x: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-header{
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0027bb 0%, rgba(0,0,26,1) 100%); 
    
}
.main-header>h1{
    font-size: 7rem;
}
.main-header>button{
    width: 40%;
    height: 15%;
    font-size: 3.2rem;
    border-radius: 25px;
    background: none;
    color: #F9F9FE;
    font-weight: bold;
    border: solid 5px #F9F9FE;
    cursor: pointer;
}
.main-header>button:active{
    background-color: #F9F9FE;
    color: #001675;
}
.main-header>p>a{
    color: #fff;
}
.main-content{
    padding: 15%;
    padding-top:10px;
    background-color: #00001A;
}
img{
    position: absolute;
    top: 3.5%;
    width: 350px;

}
@media (max-width:1170px) {

    img{
        position: absolute;
        top: 3.5%;
        width: 250px;
    
    }
    .main-header>h1{
        font-size: 4.5rem;
    }
    .main-header>button{
        font-size: 2.5rem;
        width: 50%;
        height: 10%;
    }
}
@media (max-width:800px) {
    img{
        top: 2.5%;
    }
    .main-header>h1{
        font-size: 2rem;
    }
    .main-content{
        padding: 10%
    }
    .main-header>button{
        width: 50%;
        height: 10%;
        font-size:1.3rem;
    }
}

  