@font-face {
    font-family: 'Gilroy Extra Bold';
    src: url('fonts/Gilroy-ExtraBold.eot');
    src: url('fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-ExtraBold.woff2') format('woff2'),
    url('fonts/Gilroy-ExtraBold.woff') format('woff'),
    url('fonts/Gilroy-ExtraBold.ttf') format('truetype'),
    url('fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy Light';
    src: url('fonts/Gilroy-Light.eot');
    src: url('fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
    url('fonts/Gilroy-Light.woff2') format('woff2'),
    url('fonts/Gilroy-Light.woff') format('woff'),
    url('fonts/Gilroy-Light.ttf') format('truetype'),
    url('fonts/Gilroy-Light.svg#Gilroy-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


body {
    margin: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url(img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.items {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 8%;
    max-width: 845px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.paragraph {
    font-family: 'Gilroy Light';
    color: white;
    font-size: 43px;
    padding-left: 15px;
    padding-right: 15px;
}

.image {
    margin-top: 8%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.image a{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transition: .5s all;
}

.image img {
    max-width: 844px;
    width: 100% !important;
    height: auto !important;
}

.image a:hover {
    background-color: rgb(150 23 149 / 25%);
    cursor : url(img/imlec.png),auto !important;
}

.link {
    text-align: center;
    margin-top: 10%;
}


.link a {
    font-family: 'Gilroy Extra Bold';
    font-size: 43px;
    color: white;
    text-decoration: none;
    transition: .5s all;
    padding: 20px 25px;
}


.link a:hover {
    background-color: rgb(150 23 149 / 25%);
    cursor : url(img/imlec.png),auto;
}

@media only screen and (max-width: 992px) {
    .paragraph {
        font-size: 32px;
    }
    .items {
      width: fit-content;
    }
    .image img {
        max-width: 545px;
        width: 100% !important;
        height: auto !important;
    }
    .link a {
        font-size: 28px;
    }
}

@media only screen and (max-width: 768px){
    .items {
        justify-content: center;
        margin-top: 0;
        max-width: 845px;
    }
}

@media only screen and (max-width: 576px){
    .paragraph {
        font-size: 18px;
    }
}