:root {
  --white: #F9FAFB;
  --black: #13141A;
  --hover: #2e3846;
  --hover-btn: #E8E8E8;

*{
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/bg-image.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.intro-text{
  font-size: 32px;
  font-weight: 600;
}

.designation{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.content{
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.icons{
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.icons a{
  color: var(--white);
  text-decoration: none;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icons a:hover{
  background-color: var(--hover);
  border-radius: 40px;
  transition-duration: 200ms;
}
.icons a:visited{
  color: var(--white);
}

.btn{
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding-top: 16px;
}

.email-btn{
  text-decoration: none;
  font-size: 16px;
  color: var(--black);
  border: 1px solid var(--white);
  border-radius: 24px;
  background-color: var(--white);
  display: inline-flex;
  padding: 12px 24px;
}

.email-btn:hover{
  text-decoration: none;
  background-color: transparent;
  color: var(--white);
  border-radius: 24px;
  border: 1px solid var(--white);
  transition-duration: 200ms;
  cursor: pointer;
}

.resume-btn{
  text-decoration: none;
  background-color: transparent;
  font-size: 16px;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 24px;
  border: 1px solid var(--white);
  cursor: pointer;
}

.resume-btn:hover{
  color: var(--black);
  background-color: var(--white);
  transition-duration: 200ms;
}
@media (max-width: 768px) {
  body {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@media (max-width: 480px) {
  body {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .intro-text{
    font-size: 28px;
    font-weight: 600;
  }
  
  .designation{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 360px) {
  body {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .intro-text{
    font-size: 28px;
    font-weight: 600;
  }
  
  .designation{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
  }
  .btn{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
  }
}
