*{
    margin: 0;
    padding: 0;
}

body{
    background: #14161B;
    justify-content: center;
    align-content: center;

}

.body{
    /*border: rgb(130, 238, 139) 1px solid;*/
    font-family: "poppins";
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    /*background-image: url(/img/background\ \(2\).jpg);*/
    background: #14161B;
    min-height: 100vh;
    width: 100vw;
}

.logo{
    width: 30px;
    position: relative;
    top: 20px;
    left: 20px;
}

.main{
    display: flex;
    flex-wrap: wrap;
    max-width: 700px;
    height: 70vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:rgba(40, 44, 49, 0.6);
    border-radius: 5px;
}


.main h1{
    font-size: 4em;
    letter-spacing: 2px;
    line-height: 60px;
    margin-bottom: -20px;
}

.title{
    color: white;
    width: 600px;
    text-align: center;
    padding: 20px;
}

.paragraph{
   /* border: rgb(148, 238, 130) 1px solid;*/
    color: #9BA4B8;
    max-width: 450px;
    text-align: center;
    padding: 20px;
}

.paragraph p{
    font-size: 1em;
}

.img img{
    width: 150px;
    height: 150px;
}

.img{
    /*border: violet 1px solid;*/
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 600px;
}

.buttons{
    display: flex;
    width: 600px;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px 30px 30px 30px;
    
}

.button1{
    width: 200px;
    height: 60px;
    background-color:#579DF5;
    border: none;
    color: white;
    font-weight: 900;
    border-radius: 5px;
}

.button1:hover{
    width: 200px;
    height: 60px;
    background-color:#579DF5;
    border: none;
    color: white;
    font-weight: 900;
    box-shadow: 0px 0px 24px rgba(87, 157, 245, 0.6);
    border-radius: 5px;
    cursor: pointer;
}

.button1:focus{
    outline: none;
}



.button2{
    width: 200px;
    height: 60px;
    color: white;
    background-color: #20232A;
    font-weight: 900;
    border-radius: 5px;
    border: solid 1px rgb(105, 105, 105);
}

.button2:hover{
    cursor: pointer;
    background-color: #323640;
    border:none;
}

.button2:focus{
    outline: none;
}

.link a{
    color: #579DF5;
    text-decoration: none;
    font-size: 14px;
}

.link a:visited {
       text-decoration: none;
}

.link{
    padding-top: 15px;
}


@media (max-width: 556px) {

body{
    width: 100vw;
}

.body{
    height: 100vh;
}

    .main h1{
        font-size: 39px;
        line-height: 45px;
    }

    .paragraph p{
        font-size: 15px;
    }

    .img{
        /*border: violet 1px solid;*/
        display: flex;
        justify-content: center;
        align-items: center; 
        width: 400px;
    }

    .title{
        color: white;
        width: 400px;
        text-align: center;
        padding-top: 20px;
    }
    
    .paragraph{
       /* border: rgb(148, 238, 130) 1px solid;*/
        color: #9BA4B8;
        max-width: 350px;
        text-align: center;
        padding-top: 20px;
    }
    
    .main{
        display: flex;
        height: 70vh;
        justify-content: center;
        align-items: center;
    }

    .buttons{
        width: 400px;
        justify-content: space-around;
        align-items: center;
        padding-top: 20px;
    }

    .button1{
        width: 150px;
    }

    .button2{
        width: 150px;
    }

    .button1:hover{
        cursor: pointer;
        width: 150px;
    }

    .button2:hover{
        cursor: pointer;
        background-color: #323640;
        width: 150px;
        border:none;
    }

    .logo{
        width: 30px;
        height: 40px;
    }
}