* {
    padding:0;
    margin:0;
    border:0;
}

body {
    background:black;
}

a {
    text-decoration: none;
    color:black;
}

#wrapper {
    min-height:100vh;
    color:white;
    font-family: 'Poppins', sans-serif;
    width:1200px;
    margin:auto;
    padding-top:50px;
    padding-bottom:100px;
}

.logo img {
    height:40px;
    margin-bottom:50px;
}

.about {
    margin-bottom:60px;
}

.bio {
    font-size:30px;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

.contact {
    padding-top:50px;
}

.contact p {
    display:inline;
    margin-right: 10px;
}

.email, .quote {
    background:white;
    color:black;
    padding:10px 20px 10px 20px;
    border-radius: 10px;
    border-width: 0px;
    transition:.2s;
}

.email:hover, .quote:hover {
    background:black;
    color:white;
    border-width:1px;
    border: solid;
    border-color: white;
    transition:.2s;
}

.instagram{
    padding:10px;
    border-radius: 10px;
    border-width: 0px;
    transition:.2s;
    height:25px;
}

.instagram img{
    height:20px;
    position: relative;
    top:3px;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; 
    height: 0; 
    overflow: hidden;
}
    
.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cue {
    margin-top: 70px;
    font-size:20px;
    background:linear-gradient(-90deg, #638D9A 0%, #102830 100%);
    border-radius: 10px;
    padding:20px;
    color:white;
    transition:.2s;
}

.cue:hover {
    background:linear-gradient(-90deg, #102830 0%, #102830 100%);
    transition:.2s;
}

@media (max-device-width: 1366px) and (orientation: landscape) {

    #wrapper {
        width:1000px;
    }

}

@media (max-device-width: 1024px) and (orientation: portrait) {

    #wrapper {
        width:800px;
        padding-top:70px;
    }

    .logo img {
        height:40px;
        margin-bottom:60px;
    }
    
    .about {
        margin-bottom:80px;
    }
    
    .bio {
        font-size:44px;
    }

    .email, .quote {
        font-size:24px;
    }

    .cue {
        font-size:22px;
    }

    .instagram img{
        top:2px;
    }

}

@media (max-device-width: 600px) and (orientation: portrait) {

    #wrapper {
        width:900px;
    }

    .instagram img{
        height:32px;
        top:1px;
    }

}