@charset "utf-8";
/* CSS Document */

/*///////////// start css reset ///////////////////*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
  margin:0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

/*////////////////end reset///////////////*/



/*///////////// variables ///////////////////*/

:root {
  --text-color:#EBEBEB;
  --color1:#D52EF5;
  --color2:#2A61F5;
  --background-color:black; 
  --serif-font-style:normal; 
  --font1: orator-std, monospace;
  --font2: montserrat, sans-serif;
}

/*////////////////end variable///////////////*/





/*////////////////text///////////////*/

h1{
    font-family: var(--font1);
    font-weight: 400;
    color: var(--color1);
    font-size: 65px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    h1{
        font-size: 80px;
    }    
}


@media (min-width: 1080px) {
    h1{
        font-size: 100px;
    }    
}




p{
    color: var(--text-color);
    text-align: center;
    line-height: 36px;
    font-family: var(--font2);
    font-weight: 300;
}

a{
    text-decoration: none;
    color: var(--text-color);
}

a:hover{
    color: var(--color1);
}

/*////////////////start styles///////////////*/

body{
    background-color: var(--background-color);
}

.container{
    width:100%;
    height:100%;
    position: relative;
}

@media (min-width: 1080px) {
    .container{
      height:100vh;  
    }    
}


.bkgImage{
    display: none;
}

@media (min-width: 1080px) {
    .bkgImage{
        display: flex;
    }    
}

.bkgImage{
    position: absolute;
    height:100%;
    width:100%;
}

.bkgImage img{
    height:100%;
    width:100%;
    object-fit: cover;
}


.wrapper{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    min-height: 100%;
    padding:10%;
}

@media (min-width: 1080px) {
    .wrapper{
        width:45%;
        margin-left:5%;
    }  
}




.left{
    display: flex;
    width:100%;
    height:100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width:100%;
}

@media (min-width: 760px) {
    .left{
        max-width:440px;
    } 
}



.left a{
    width:100%;
}

.intro{
    margin-bottom:25px;
    text-align:left;
}


.button{
    width:100%;
    color:white;
    border: 2px solid;
    padding:35px 0px;
    border-radius:35px;
    margin:15px 0px;
    text-align: center;
    transition: .5s ease-out;
    font-family: var(--font1);
    font-weight: 400;
    font-size:22px;
    text-transform: uppercase;
}

.pink{
    border-color: var(--color1);
}

.blue{
   border-color: var(--color2);
}


.pink:hover{
    background-color: var(--color1);
}

.blue:hover{
   background-color: var(--color2); 
}

