@import url('switzer.css');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    display: flex;
    height: calc(100vh - 152px);
    padding: 32px 120px 120px 120px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

h1 {
    color: #EBEBEB;
    font-family: 'Switzer-Regular';
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 80px */
    letter-spacing: -1.2px;
    align-self: stretch;
    }

p {
    color: #808080;
    font-family: 'Switzer-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #FFFF00;
    opacity: 1;
}

.header {
    display: flex;
    align-items: center;
    gap: 8px; 
    align-self: stretch;
}

.headerIcon {
    width: 16px;
    height: 16px;
}

.headerName {
    color: #EBEBEB;
    font-family: 'Switzer-Light';
    font-size: 14px;
    font-style: normal;
    line-height: 16px;
    letter-spacing: -0.18px;
    flex: 1 0 0;
}

.headerLink {
    color: #EBEBEB;
    text-align: right;
    font-family: 'Switzer-Regular';
    font-size: 14px;
    font-style: normal;
    line-height: 16px;
    letter-spacing: -0.18px;
    flex: 1 0 0;
    opacity: 0.5;
}

.content {
    display: flex;
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media screen and (max-width: 800px) {
    body {
        height: calc(100vh - 96px);
        padding: 32px 64px 64px 64px;
    }
  }


@media screen and (max-width: 528px) {
    body {
        height: calc(100vh - 64px);
        padding: 32px;
    }

    h1 {
        font-size: 48px;
        line-height: 110%; /* 52.8px */
        letter-spacing: -0.72px;
    }
  }

  @media screen and (max-width: 320px) {
    .headerLink {
        display: none;
    }
  }
