@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Montserrat+Alternates:ital,wght@0,300;1,300;1,400&display=swap');


:root {
    --color: #c01611;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html,
body {
    padding: 0;
    margin: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #333;
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    margin-top: 3rem;
    height: 100vh;
    width: 100%;

    /* place-items: center; */
    /* background: linear-gradient(90deg, rgba(238, 237, 237, 1) 0%, rgba(124, 128, 129, 1) 100%); */
}

a {
    all: unset;
}

.wrapper .button {
    display: inline-block;
    height: 60px;
    width: 60px;
    float: left;
    margin: 0 5px;
    overflow: hidden;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
}

.wrapper .button:hover {
    width: 200px;
}

.wrapper .button .icon {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
    line-height: 60px;
    transition: all 0.3s ease-out;
}

.wrapper a:hover .icon.facebook {
    background: #4267B2;
}

.wrapper a:hover .icon.youtube {
    background: #FF0000;
}

.wrapper a:hover .icon.insta {
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;

    background-clip: text;
    -webkit-background-clip: text;
}

.wrapper a:hover .icon.tiktok {
    background-color: #333;
}


.wrapper .button .icon i {
    font-size: 25px;
    line-height: 60px;
    transition: all 0.3s ease-out;
}

.wrapper .button:hover .icon i {
    color: #fff;
}

.wrapper .button span {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
    line-height: 60px;
    transition: all 0.3s ease-out;
}

.wrapper .button:nth-child(1) span.facebook {
    color: #4267B2;
}

.wrapper a span.youtube {
    color: #FF0000 !important;
}

.wrapper a span.insta {
    background: linear-gradient(to right, red, blue);
    color: transparent;
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
}

.wrapper .button:nth-child(4) span {
    color: #333;
}

.wrapper .button:nth-child(5) span {
    color: #ff0000;
}

.logo {
    margin-bottom: 5rem !important;
    width: 18%;
}
.logo img{
    width: 102%;
}

.end-text {
    text-align: center;
    margin-top: 1rem;
}

.end-text span {
    font-family: 'Montserrat Alternates', sans-serif !important;
    color: var(--color);
    font-weight: bold;

}
.container {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
}
.snowflake {
    display: inline-block;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem;
    animation: falling 2s linear forwards infinite;
    transform: translateY(-20vh);
}

.snowflake::before {
    content: '❄️';
}

@keyframes falling {
    from {
        transform: translateY(-20vh);
    }

    to {
        transform: translateY(100vh);
    }
}

.sec{
    background: linear-gradient(90deg, rgba(168,165,165,1) 0%, rgba(128,125,124,1) 100%) !important;
}


@media screen and (max-width:1076px){
    .logo{
        width: 20%;
    }
}
@media screen and (max-width:924px){
    .logo{
        width: 23%;
    }
}
@media screen and (max-width:714px){
    .logo{
        width: 25%;
    }
}
@media screen and (max-width:626px){
    .logo{
        width: 28%;
    }
}
@media screen and (max-width:526px){
    .logo{
        width: 34%;
    }
}
@media screen and (max-width:434px){
    .logo{
        width: 39%;
    }
}
@media screen and (max-width:368px){
    .logo{
        width: 45%;
    }
}
@media screen and (max-width:328px){
    .logo{
        width: 50%;
    }
}
@media screen and (max-width:380px){
    .logo{
        width: 70%;
    }
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
