@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background-color: rgb(216, 0, 11);
}

/* header {
    background-color: #75757551;
} */

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

header .container .logo img {
    height: 80px;
    margin: 10px 0 0 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

header .container .logo img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 22px;
}

nav ul li a:hover {
    /* color: black; */
    text-decoration: underline white 2px;
}

.container-sec {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cont-text {
    /* margin: 0 0 0 40px; */
    text-transform: uppercase;
}

.cont-text h2 {
    color: white;
    font-size: 70px;
    margin: 0 0 20px 0;
    text-shadow: 4px 0 10px black;
}

.cont-text p {
    width: 600px;
    color: white;
    line-height: 1.8;
    font-size: 15px;
}

.con-image img {
    transform: rotate(-10deg);
}

.cont-text button {
    width: 180px;
    height: 45px;
    background-color: #f6da03f6;
    border-radius: 15px;
    border: 1px solid #333;
    margin: 10px 0 0 10px;
    transition: 0.5s ease all;
}

.cont-text button:hover {
    transform: scale(1.2);
}

.cont-text button a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 500;
}

.container-sec .con-ico {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.container-sec .con-ico i {
    padding: 8px;
    color: white;
}