* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #031513;
    color: white;
}


/* MAIN PAGE */

.welcome-page {
    width: 100vw;
    height: 100vh;

    position: relative;

    background-image: url("../image/welcome-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* LOGO */

.brand {
    position: absolute;

    top: 4%;
    left: 7.5%;
}

.brand h2 {
    font-size: 32px;
    font-weight: bold;
}

.brand h2 span {
    color: #00e6c3;
}

.brand p {
    margin-top: 6px;

    font-size: 10px;
    letter-spacing: 5px;

    color: white;
}


/* MAIN CONTENT */

.welcome-content {
    position: absolute;

    left: 7.5%;
    top: 23%;

    width: 550px;
}


/* SMALL TITLE */

.small-title {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 16px;
    letter-spacing: 7px;

    margin-bottom: 25px;
}

.small-title span {
    width: 55px;
    height: 2px;

    background: #00e6c3;
}


/* MAIN HEADING */

.welcome-content h1 {
    font-size: 70px;
    line-height: 1;

    margin-bottom: 25px;

    letter-spacing: 1px;
}

.welcome-content h1 span {
    color: #00e6c3;
}


/* SUB HEADING */

.welcome-content h3 {
    font-size: 17px;

    letter-spacing: 7px;

    margin-bottom: 28px;
}


/* DESCRIPTION */

.welcome-content > p {
    font-size: 18px;

    line-height: 1.7;

    color: #dddddd;

    margin-bottom: 38px;
}


/* GET STARTED */

.start-button {
    width: 320px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 35px;

    border: 2px solid #00e6c3;
    border-radius: 40px;

    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: bold;

    letter-spacing: 6px;

    box-shadow: 0 0 15px rgba(0, 230, 195, 0.5);

    transition: 0.3s;
}

.start-button span {
    font-size: 28px;
    letter-spacing: 0;
}

.start-button:hover {
    background: #00e6c3;
    color: #021513;

    box-shadow: 0 0 30px rgba(0, 230, 195, 0.8);
}


/* SOCIAL ICONS */

.social-icons {
    position: absolute;

    left: 7.5%;
    bottom: 7%;

    display: flex;
    gap: 28px;
}

.social-icons i {
    font-style: normal;

    font-size: 25px;

    color: white;
}


/* BOTTOM RIGHT */

.bottom-text {
    position: absolute;

    right: 7.5%;
    bottom: 6.5%;

    letter-spacing: 5px;

    font-size: 11px;
}

.bottom-text p {
    margin-bottom: 7px;
}

.bottom-text span {
    display: block;

    width: 45px;
    height: 2px;

    background: white;

    margin-top: 15px;
}


/* LAPTOP / SMALL SCREEN */

@media (max-width: 1000px) {

    .welcome-content {
        left: 6%;
        width: 500px;
    }

    .welcome-content h1 {
        font-size: 55px;
    }

    .brand {
        left: 6%;
    }

    .social-icons {
        left: 6%;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .welcome-page {
        background-position: center;
    }

    .brand {
        top: 5%;
        left: 7%;
    }

    .brand h2 {
        font-size: 25px;
    }

    .welcome-content {
        left: 7%;
        top: 25%;
        width: 86%;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 4px;
        gap: 15px;
    }

    .small-title span {
        width: 35px;
    }

    .welcome-content h1 {
        font-size: 42px;
    }

    .welcome-content h3 {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .welcome-content > p {
        font-size: 14px;
    }

    .start-button {
        width: 260px;
        height: 58px;
        font-size: 12px;
    }

    .bottom-text {
        display: none;
    }

    .social-icons {
        bottom: 5%;
    }

}