@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

html {
  scroll-behavior: smooth;
  
}

body{
    background: #000;
}

div{
    font-family: 'Raleway', sans-serif;
}

.Hero{
    height: 80vh;
    background-image: url("uploads/Frame\ 518.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center ;
}

.commandi-bg{
    background-color:#fff8b9 ;
}

.anazik-bg{
    background-color:#FFC0C0 ;
}

.SNTF-bg{
    background-color: #BCC2FF;
}

.rotate:hover{
    transition: transform 0.3s ease-in-out;  /* Add transition for smooth effect */
    transform: rotate(1deg);  /* Apply slight negative rotation on hover */
}

.experienceFont{
    font-family: Geist; font-size: 48px;font-weight: bolder;line-height: 95%; letter-spacing: -3px;color: white;
}

.experienceFontCompanyDate{
    font-family: Geist; font-size: 2.5rem;line-height: 95%; letter-spacing: -2px;color: grey;font-weight: 200;
}

.experienceFontContact{
    font-family: Geist; font-size: 1.5rem;line-height: 95%; letter-spacing: -2px;color: grey;font-weight: 200;
}

.experienceFontContactD{
    font-family: Geist; font-size: 0.2rem;line-height: 95%; letter-spacing: -0.5px;color: grey;font-weight: 200;
}

.seperatorexp{
    width: 100%; /* Span the full width */
            height: 1px; /* Set the line height */
            border-top: 1px solid white; /* Create white border-top */
            
}

.social-media {
    background-color: black; /* Black background */
    color: gray; /* Grey text color */
    display: flex; /* Arrange list items vertically */
    flex-direction: column;
    align-items: center; /* Center text horizontally */
    padding: 2rem; /* Add padding for spacing */
    font-size: 2rem; /* Large font size */
  }
  
  .social-media a {
    text-decoration: none; /* Remove default link underline */
    color: inherit; /* Inherit grey color from parent */
    transition: color 0.3s ease-in-out; /* Smooth color transition */
  }
  
  .social-media a:hover {
    color: white; /* White text on hover */
  }

  .CenterTheCol{
    display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  }