@font-face {
    font-family: 'Unigeo32 Trial Light';
    src: url("./fonts/Unigeo32-Light-trial.ttf");
    font-weight:300;
}

@font-face {
    font-family: 'Unigeo32 Trial Medium';
    src: url("./fonts/Unigeo32-Medium-trial.ttf");
    font-weight: 500;
}

@font-face {
    font-family: 'NATS';
    src: url("./fonts/NATS-Regular.ttf");
    font-weight: 400;
}

.aoboshi-one-regular {font-family: "Aoboshi One", serif;font-weight: 400;font-style: normal;}
.neuton-extralight {font-family: "Neuton", serif;font-weight: 200;font-style: normal;}
.neuton-light {font-family: "Neuton", serif;font-weight: 300;font-style: normal;}
.neuton-regular {font-family: "Neuton", serif;font-weight: 400;font-style: normal;}
.neuton-bold {font-family: "Neuton", serif;font-weight: 700;font-style: normal;}
.neuton-extrabold {font-family: "Neuton", serif;font-weight: 800;font-style: normal;}
.nats {font-family: "NATS", serif;font-weight: 400;font-style: normal;}

.html, body{
    padding: 0;
    margin: 0;
    color: white;
    background-color: #2A3179;
    font-family: "Unigeo32 Trial Medium";
    font-weight: 400;
    font-style: normal;
}

header{
    height: 838px;
    max-height: 100vh;
    overflow: hidden;
    background: linear-gradient(270deg, rgba(42, 49, 121, 0) -0.65%, #2A3179 100%), linear-gradient(180deg, rgba(42, 49, 121, 0) 79.18%, #2A3179 100%), url(bg.png);
}

.container{
    max-width: 1300px;
    width: auto;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

nav{
    padding: 20px 0px;
    position: relative;
    z-index: 1000;
}

main{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

main .left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    width: calc(50% - 10px);
}

main .right{
    width: calc(50% - 10px);
}

main .right img{
    margin-top: -100px;
    pointer-events: none;
    user-select: none;
    transition: .3s;
}

h1{
    font-family: 'Unigeo32 Trial Medium';
    font-style: normal;
    font-weight: 800;
    font-size: 35px;
    line-height: 40px;
}

.muted{
    font-family: 'Unigeo32 Trial Light';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 23px;
    opacity: 0.5;
    margin-bottom: 20px;
}

button, .button{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    gap: 59px;
    max-width: 400px;
    height: 60px;
    background: linear-gradient(90deg, #FF748D 0%, #E17DAF 100%);
    border-radius: 10px;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Unigeo32 Trial Light';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 10px;
    filter: brightness(1);
    transition: .3s;
}

button:hover, .button:hover{
    transition: .3s;
    filter: brightness(1.2);
}

h1 span{
    background: linear-gradient(90deg, #FF748D 0%, #E17DAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@media (max-width: 1550px) {
    main .right img{
        width: 100%;
    }

    main .right {
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width: 1335px) {
    
    main .left, main .right {
        width: auto;
        height: auto;
        text-align: center;
    }

    main button, main .button{
        margin: 0 auto;
    }

    main {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: calc(100vh - 87px);
    }

    .container{
        padding: 0 30px;
        width: auto;
    }

    main .right img{
        display: none;
    }
}

@media (max-width: 500px) {
    main button, main .button{
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 20px;
    }
}