        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            background: url(iceberg.jpg);
            background-size: cover;
            background-position: top;
        }

        header {
            position: relative;
            top: 0;
            width: 100%;
            padding: 30px 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header .logo {
            position: relative;
            color: transparent; /*#000*/;
            font-size: 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1px;
			background-image: url("duck.gif");
			background-clip: text;
			-webkit-background-clip: text;
            background-position: center;
            background-size: contain;
        }

        header .navigation a {
            color: #000;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 2px;
            padding: 2px 15px;
            border-radius: 20px;
            transition: 0.3s;
            transition-property: background;
        }

        header .navigation a:not(:last-child) {
            margin-right: 30px;
        }

        header .navigation a:hover {
            background: #fff;
        }

        .content {
            /*max-width: 670px;*/
            margin: 60px 100px;
            display:flex;
            flex-direction:row;
            justify-content: space-around;
        }

        .content .info {
          max-width: 670px;
        }

        .content img {
          display:block;
          /*border:1px solid lime;*/
          animation: imgspin 5s infinite;
        }

        @keyframes imgspin {
          from {
            transform: rotate(0);
          }

          to {
            transform: rotate(360deg);
          }
        }

        .content .info h2 {
            color: transparent; /*#226A80;*/
            font-size: 55px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            line-height: 60px;
            margin-bottom: 30px;
			background-image: url("flames.gif");
			background-clip: text;
			-webkit-background-clip: text;
            background-position: 105px center;
        }

        .content .info h2 span {
            color: #ffff;
            font-size: 23px;
            font-weight: 600;
        }

        .content .info p {
			overflow-wrap:break;
			background-color: black;
			opacity:0.8;
			padding:5px;


			color: white;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 40px;
			padding-left:10px;
			padding-right:10px;
        }

        .content .info-btn {
            color: #fff;
            background: #226A80;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 10px 20px;
            border-radius: 5px;
            transition: 0.3s;
            transition-property: background;
        }

        .content .info-btn:hover {
            background: #0C4F60;
        }

        .media-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
        }

        .media-icons a {
            position: relative;
            color: #111;
            font-size: 25px;
            transition: 0.3s;
            transition-property: transform;
        }

        .media-icons a:not(:last-child) {
            margin-right: 60px;
        }

        .media-icons a:hover {
            transform: scale(1.5);
        }

        label {
            display: none;
        }

        #check {
            z-index: 3;
        }

		.fa-brands {
			color:white;
			shadow-box:1px 1px black;
		}

        @media (max-width: 960px) {
            label {
                display: block;
                font-size: 25px;
                cursor: pointer;
                transition: 0.3s;
                transition-property: color;
                z-index: 5;
            }
            label i {
                text-decoration: none;
                color: #000;
            }
            label:hover {
                color: #fff;
            }
            .navigation {
                display: none;
            }
            label .close-btn {
                display: none;
            }
            .active {
                z-index: 2;
                position: fixed;
                background: rgba(114, 223, 255, 0.9);
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            .active a {
                margin-right: 0;
                margin-bottom: 50px;
            }
            .navigation.active a {
                font-weight: 700;
                letter-spacing: 2px;
            }
            .a .show {
                display: none;
            }
            .a .close {
                display: block;
            }
        }

        @media (max-width: 560px) {
            .content .info h2 {
                font-size: 35px;
            }
            .content .info h2 span {
                font-size: 30px;
            }
            .content .info p {
                font-size: 13px;
            }
        }
