@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    overflow: hidden;
}

::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #2e3539;
}

::selection {
    color: #fff;
    background: #2e3539;
}

.container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 7%;
    background: -webkit-linear-gradient(283.58deg, #3CAEA3 0%, #173F5F 100%);
    min-height: 100vh;
    gap: 15px;
    padding-bottom: 80px;
}

.container .content {
    flex: 1 1 400px;
}

.container .content #logo {
    width: 60%;
    margin-bottom: 30px;
}

.container .image {
    flex: 1 1 400px;
}

.content .image img {
    width: 100%;
}

.container .content .title {
    font-size: 45px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.container .content p {
    font-size: 22px;
    color: #fff;
    padding: 5px 0;
}

.container .content .description a {
    color: #f6d55c;
    transition: all .2s;
}

.container .content .description a:hover {
    color: #3CAEA3;
    transition: all .2s;
}

.container .content .count-down {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    margin: 50px 0;
}

.container .content .count-down .box {
    padding: 5px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 3px 3px 3px #3333;
    text-align: center;
    flex: 1 1 20px;
}

.container .content .count-down .box h3 {
    font-size: 50px;
    background: -webkit-linear-gradient(283.58deg, #3CAEA3 0%, #173F5F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container .content .count-down .box span {
    font-size: 20px;
    padding: 5px 0;
}

/* Button style */
.container .content .btn {
    display: inline;
    padding: 8px 50px;
    margin: 20px 0;
    transform: translate(-50%, -50%);
}

.container .content .btn a {
    display: flex;
    width: 200px;
    height: 60px;
    justify-content: center;
    line-height: 40px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: #f6d55c;
    border: 2px solid #f6d55c;
    letter-spacing: 2px;
    text-transform: uppercase;
    align-items: center;
    position: relative;
    transition: all .35s;
}

.container .content .btn a span{
    z-index: 2;
}

.container .content .btn a:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #f6d55c;
    transition: all .5s;
}

.container .content .btn a:hover{
    color: #2e3539 !important;
}

.container .content .btn a:hover:after{
    width: 100%;
}

@media (max-width: 500px) {
    * {
        overflow: visible;
    }

    .container {
        padding: 20px;
    }

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

    .container .content .count-down {
        gap: 5px;
    }

    .container .content .count-down .box h3 {
        font-size: 30px;
    }

    .container .content .count-down .box span {
        font-size: 15px;
    }


}


/* plane animation code */
/* @keyframes circleAround {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
      transform: translate(100px, 0) rotate(180deg);
    }
    75% {
      transform: translate(50px, -50px) rotate(270deg);
    }
    100% {
      transform: translate(0, 0) rotate(360deg);
    }
}
  
@keyframes rotatePlane {
    0% {
        transform: rotate(0deg);
        transform-origin: center;
    }
    100% {
        transform: rotate(360deg);
        transform-origin: center;
    }
}

.container .content #logo .plane {
    animation: rotatePlane 5s linear infinite;
    transform-box: fill-box;
} */