@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

body {
    background-color: #151515;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

a {
    text-decoration: none;
    background-color: transparent;
}

.loader {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #daa520;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    background-color: transparent;
    /* position: absolute; */
    z-index: 20;
  }

  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border-left: 4px solid aliceblue;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 

#to-be {
    margin-top: 20px;
    color: goldenrod;
    font-family: 'Exo 2';
    font-size: 18px;
    width: 30%;
    text-align: center;
    background-color: transparent;
}

#soc {
    margin-top: 20px;
    width: 30%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.link {
    width: 35px;
    height: 35px;
}

.mid {
    margin-left: 10px;
    margin-right: 10px;
}

@media all and (max-width: 1200px) {
    #to-be {
        margin-top: 20px;
        color: goldenrod;
        font-family: 'Exo 2';
        font-size: 18px;
        width: 50%;
        text-align: center;
        background-color: transparent;
    }
}

@media all and (max-width: 768px) {
    #to-be {
        margin-top: 20px;
        color: goldenrod;
        font-family: 'Exo 2';
        font-size: 18px;
        width: 70%;
        text-align: center;
        background-color: transparent;
    }
}

@media all and (max-width: 475px) {
    #to-be {
        margin-top: 20px;
        color: goldenrod;
        font-family: 'Exo 2';
        font-size: 14px;
        width: 70%;
        text-align: center;
        background-color: transparent;
    }

    .loader,
    .loader::after {
        width: 48px;
        height: 48px;
    }
}
