@import url('clash-display.css');
@import url('ivi-journal.css');
@import url('cabinet-grotesk.css');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #171819;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(100vh - 100px);
    gap: 80px;
}

.content {
    display: flex;
    width: 80%;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.titles {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    display: flex;
    min-width: 600px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 0px 16px;
    align-self: stretch;
    flex-wrap: wrap;
}

h1 {
    font-family: ClashDisplay-Variable;
    font-style: normal;
    font-weight: 500;
    font-size: 82px;
    letter-spacing: 0.035em;
    color: #FFFFFF;
    margin: 0%;
    line-height: 100%;
    text-align: center;
}

h1 span {
    color: #1966FF;
}

h2 {
    color: #E5EBEE;
    font-family: ClashDisplay-Extralight;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 59px;
}

h2 span {
    font-family: "Ivy Journal Italic";
    color: #0055FF;
}

.logo {
    min-width: 180px;
    flex-direction: column;
    color: white;
    align-items: center;
}

.contact {
    color: #FFFFFF;
    font-family: CabinetGrotesk-Extralight;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact p {
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
    margin: 0%;
}

.contact span {
    margin-top: 0px;
    font-family: CabinetGrotesk-Bold;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
}

.idea {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 34px;
    gap: 10px; 
    background: #333333;
    border-radius: 14px;
}

.email img {
    margin: 0.25vw;
    
}

.email p {
    font-size: 20px;
    line-height: 20px;
    margin-top: 0px;
    letter-spacing: 0.04em;
}

.email a {
    display: contents;
}

.portfolio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.portfolio p {
    color: #FFFFFF;
    font-size: 20px;
    font-family: cabinetGrotesk-ExtraLight;
    line-height: 25px;
}

.footerText {
    color: gray;
    font-style: normal;
    font-family: cabinetGrotesk-ExtraLight;
    font-size: 16px;
    display: flex;
    position: relative;
    padding: 16px;
    justify-content: center;
    height: 100px;
    background-color: #212529;
    
}

@media screen and (max-width: 600px) {

    .logo {
        margin-top: 48px;
    }
    
    h2 {
        font-size: 24px;
        line-height: 28px;
    }

    h1 {
        font-size: 48px;
        max-width: 80vw;
    }

    .container p {
        font-size: 16px;
    }
}

/* Media Queries */